[BACK]Return to Makefile.in CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_math

Diff for /OpenXM/src/ox_math/Makefile.in between version 1.12 and 1.13

version 1.12, 2003/01/13 12:04:28 version 1.13, 2003/01/15 05:13:10
Line 1 
Line 1 
 # -*- mode: Makefile -*-  # -*- mode: Makefile -*-
 # $OpenXM: OpenXM/src/ox_math/Makefile.in,v 1.11 2003/01/12 03:16:38 ohara Exp $  # $OpenXM: OpenXM/src/ox_math/Makefile.in,v 1.12 2003/01/13 12:04:28 ohara Exp $
   
 OpenXM_HOME=../..  OpenXM_HOME=../..
   
Line 14  DEFS      = -DDEBUG
Line 14  DEFS      = -DDEBUG
 CFLAGS    = -g -O2 ${DEFS} -I${ADDONSDIR} -I${OpenXM_HOME}/include  CFLAGS    = -g -O2 ${DEFS} -I${ADDONSDIR} -I${OpenXM_HOME}/include
 LIBS      = @LIBS@ -L${OpenXM_HOME}/lib -lox -lgmp -L${ADDONSDIR} -lML -lm  LIBS      = @LIBS@ -L${OpenXM_HOME}/lib -lox -lgmp -L${ADDONSDIR} -lML -lm
 STATIC_LINK_FLAGS = @static_link_flags@  STATIC_LINK_FLAGS = @static_link_flags@
   TM_C      = math2.c int.c
   
   BINARIES  = ox_math math2ox test1 test2
 BINARIES  = ox_math math2ox  
 INSTALL   = @INSTALL@  INSTALL   = @INSTALL@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@  INSTALL_PROGRAM = @INSTALL_PROGRAM@
   
Line 28  INSTALL_PROGRAM = @INSTALL_PROGRAM@
Line 28  INSTALL_PROGRAM = @INSTALL_PROGRAM@
   
 all: ${BINARIES}  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  serv1.o sm.o sm_ext.o mlo.o: sm.h
   
 ox_math: serv1.o sm.o sm_ext.o mlo.o  ox_math: serv1.o sm.o sm_ext.o mlo.o
Line 61  clean-for-debug: 
Line 67  clean-for-debug: 
 clean-binary: clean-for-debug  clean-binary: clean-for-debug
   
 clean:  clean:
         -rm -f *.o *~ math2.c ${BINARIES}          -rm -f *.o *~ ${TM_C} ${BINARIES}
   
 distclean: clean  distclean: clean
         -rm -f .configure_done configure config.cache config.log config.status Makefile          -rm -f .configure_done configure config.cache config.log config.status Makefile

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>