=================================================================== RCS file: /home/cvs/OpenXM/src/ox_math/Makefile.in,v retrieving revision 1.8 retrieving revision 1.13 diff -u -p -r1.8 -r1.13 --- OpenXM/src/ox_math/Makefile.in 2000/12/03 21:46:52 1.8 +++ OpenXM/src/ox_math/Makefile.in 2003/01/15 05:13:10 1.13 @@ -1,5 +1,5 @@ # -*- mode: Makefile -*- -# $OpenXM: OpenXM/src/ox_math/Makefile.in,v 1.7 2000/03/15 14:16:38 ohara Exp $ +# $OpenXM: OpenXM/src/ox_math/Makefile.in,v 1.12 2003/01/13 12:04:28 ohara Exp $ OpenXM_HOME=../.. @@ -14,14 +14,26 @@ DEFS = -DDEBUG 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@ +TM_C = math2.c int.c - -BINARIES = ox_math math2ox +BINARIES = ox_math math2ox test1 test2 INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +.SUFFIXES: .tm .c + +.tm.c: + -rm -f $@ + ${MPREP} $? > $@ + all: ${BINARIES} +test1: test1.o mlo.o + ${CC} ${CFLAGS} ${STATIC_LINK_FLAGS} -o $@ test1.o mlo.o ${LIBS} + +test2: test2.o int.o + ${CC} ${CFLAGS} ${STATIC_LINK_FLAGS} -o $@ test2.o int.o ${LIBS} + serv1.o sm.o sm_ext.o mlo.o: sm.h ox_math: serv1.o sm.o sm_ext.o mlo.o @@ -30,10 +42,6 @@ ox_math: serv1.o sm.o sm_ext.o mlo.o 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} -math2.c: math2.tm - -rm -f $@ - ${MPREP} $? > $@ - install: install-binary install-document install-document: @@ -59,7 +67,7 @@ clean-for-debug: clean-binary: clean-for-debug clean: - -rm -f *.o *~ math2.c ox_math math2ox + -rm -f *.o *~ ${TM_C} ${BINARIES} distclean: clean -rm -f .configure_done configure config.cache config.log config.status Makefile