git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@149 626c5289-ae23-0410-ae9c-e8d60b6d4f22
36 lines
930 B
Makefile
36 lines
930 B
Makefile
# Generated automatically from Makefile.in by configure.
|
|
|
|
CC = @CC@
|
|
AR = @AR@
|
|
RANLIB = @RANLIB@
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
RPATH = @RPATH@
|
|
SO = @SO@
|
|
CCSHARED = @CCSHARED@
|
|
LDSHARED = @LDSHARED@
|
|
INCLUDE = -I. -I../Swig -I../DOH/Include
|
|
|
|
SRCS = expr.c cpp.c
|
|
OBJS = expr.o cpp.o
|
|
|
|
.c.o:
|
|
$(CC) $(CCSHARED) $(INCLUDE) $(CFLAGS) -c -o $*.o $<
|
|
|
|
#####################################################################
|
|
# TARGET: swig
|
|
#####################################################################
|
|
# friendly to the toplevel makefile
|
|
all: swig
|
|
swig: $(OBJS)
|
|
for i in $(OBJS); do echo Source/Preprocessor/$$i >> $(OBJS_FILE); done
|
|
|
|
clean:
|
|
rm -f *.o *~ core *.so *.a
|
|
|
|
######################################################################
|
|
# TARGET: experiment
|
|
#####################################################################
|
|
# same as swig
|
|
experiment: swig
|
|
|