2010-03-08 04:55:21 -06:00
|
|
|
# @configure_output@
|
|
|
|
# This file is used by Autoconf to make the real Makefile.
|
|
|
|
# DO NOT EDIT THIS FILE!
|
2013-03-09 18:59:42 -06:00
|
|
|
# If you want to change something do it to the Makefile autoconf
|
2010-03-08 04:55:21 -06:00
|
|
|
# creates. You should never have to edit this file.
|
|
|
|
|
|
|
|
CC= @CC@
|
|
|
|
LIBS = @LIBS@
|
|
|
|
CFLAGS = @CFLAGS@
|
|
|
|
RANLIB = @RANLIB@
|
|
|
|
|
|
|
|
# You shouldn't need to edit below here.
|
|
|
|
|
|
|
|
LIBTARGET = libXmx.a
|
|
|
|
|
|
|
|
all: $(LIBTARGET)
|
|
|
|
|
|
|
|
CFILES = Xmx.c Xmx2.c
|
|
|
|
|
|
|
|
OBJS = $(CFILES:.c=.o)
|
|
|
|
|
|
|
|
$(LIBTARGET): $(OBJS)
|
|
|
|
-rm -f $(LIBTARGET)
|
|
|
|
ar rv $(LIBTARGET) $(OBJS)
|
|
|
|
$(RANLIB) $(LIBTARGET)
|
|
|
|
|
|
|
|
Xmx.o: Xmx.c Xmx.h XmxP.h
|
|
|
|
Xmx2.o: Xmx2.c Xmx.h XmxP.h
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-rm $(LIBTARGET) *.o
|
|
|
|
tags:
|
|
|
|
etags -t *.[ch]
|