swig/Source/Swig/Makefile.in
Dustin Mitchell da2211f160 In the middle of testing
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@108 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2000-01-19 00:10:27 +00:00

28 lines
599 B
Makefile

CC = @CC@
AR = @AR@
RANLIB = @RANLIB@
prefix = @prefix@
exec_prefix = @exec_prefix@
RPATH = @RPATH@
SO = @SO@
CCSHARED = @CCSHARED@
LDSHARED = @LDSHARED@
INCLUDE = -I. -I../DOH/Include
SRCS = scanner.c include.c getopt.c misc.c super.c
OBJS = scanner.o include.o getopt.o misc.o super.o
.c.o:
$(CC) $(CCSHARED) $(INCLUDE) $(CFLAGS) -c -o $*.o $<
all: $(OBJS)
supertest: super.c
$(CC) $(CCSHARED) $(INCLUDE) $(CFLAGS) -g -DSUPER_TEST -c \
-o supertest.o super.c
$(CC) supertest.o -ldoh -o supertest
clean:
rm -f *.o *~ core *.so *.a