=================================================================== RCS file: /home/cvs/OpenXM/src/ox_math/Makefile.in,v retrieving revision 1.13 retrieving revision 1.19 diff -u -p -r1.13 -r1.19 --- OpenXM/src/ox_math/Makefile.in 2003/01/15 05:13:10 1.13 +++ OpenXM/src/ox_math/Makefile.in 2005/02/09 07:13:49 1.19 @@ -1,5 +1,5 @@ # -*- mode: Makefile -*- -# $OpenXM: OpenXM/src/ox_math/Makefile.in,v 1.12 2003/01/13 12:04:28 ohara Exp $ +# $OpenXM: OpenXM/src/ox_math/Makefile.in,v 1.18 2003/09/10 16:00:09 ohara Exp $ OpenXM_HOME=../.. @@ -10,10 +10,11 @@ MPREP = ${ADDONSDIR}/mprep LN = @LN_S@ CC = @CC@ -DEFS = -DDEBUG +DEFS = @DEFS@ CFLAGS = -g -O2 ${DEFS} -I${ADDONSDIR} -I${OpenXM_HOME}/include -LIBS = @LIBS@ -L${OpenXM_HOME}/lib -lox -lgmp -L${ADDONSDIR} -lML -lm -STATIC_LINK_FLAGS = @static_link_flags@ +GMPLIB = @GMPLIB@ +LIBS = @LIBS@ -L${OpenXM_HOME}/lib -lox -lgc -L${ADDONSDIR} -lML -lm ${GMPLIB} +# STATIC_LINK_FLAGS = @static_link_flags@ TM_C = math2.c int.c BINARIES = ox_math math2ox test1 test2 @@ -28,6 +29,9 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ all: ${BINARIES} +math2.o: math2.c +int.o: int.c + test1: test1.o mlo.o ${CC} ${CFLAGS} ${STATIC_LINK_FLAGS} -o $@ test1.o mlo.o ${LIBS} @@ -37,10 +41,10 @@ test2: test2.o int.o serv1.o sm.o sm_ext.o mlo.o: sm.h ox_math: serv1.o sm.o sm_ext.o mlo.o - ${CC} ${CFLAGS} ${STATIC_LINK_FLAGS} -o $@ sm.o sm_ext.o serv1.o mlo.o ${LIBS} + ${CC} ${CFLAGS} ${STATIC_LINK_FLAGS} -o $@ serv1.o sm.o sm_ext.o mlo.o ${LIBS} -math2ox: math2ox.o math2.o mlo.o sm.o sm_ext.o - ${CC} ${CFLAGS} ${STATIC_LINK_FLAGS} -o $@ math2ox.o math2.o sm.o sm_ext.o mlo.o ${LIBS} +math2ox: math2ox.o math2.o mlo.o + ${CC} ${CFLAGS} ${STATIC_LINK_FLAGS} -o $@ math2ox.o math2.o mlo.o ${LIBS} install: install-binary install-document @@ -70,5 +74,4 @@ clean: -rm -f *.o *~ ${TM_C} ${BINARIES} distclean: clean - -rm -f .configure_done configure config.cache config.log config.status Makefile - + -rm -f .configure_done config.cache config.log config.status Makefile