[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.7 and 1.12

version 1.7, 2000/03/15 14:16:38 version 1.12, 2003/01/13 12:04:28
Line 1 
Line 1 
 # -*- mode: Makefile -*-  # -*- mode: Makefile -*-
 # $OpenXM: OpenXM/src/ox_math/Makefile.in,v 1.6 2000/03/13 06:27:48 ohara Exp $  # $OpenXM: OpenXM/src/ox_math/Makefile.in,v 1.11 2003/01/12 03:16:38 ohara Exp $
   
 OpenXM_HOME=../..  OpenXM_HOME=../..
   
Line 20  BINARIES  = ox_math math2ox
Line 20  BINARIES  = ox_math math2ox
 INSTALL   = @INSTALL@  INSTALL   = @INSTALL@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@  INSTALL_PROGRAM = @INSTALL_PROGRAM@
   
 all: ${BINARIES}  .SUFFIXES: .tm .c
   
 serv1.o serv2.o mlo.o: serv2.h  .tm.c:
           -rm -f $@
           ${MPREP} $? > $@
   
 ox_math: serv1.o serv2.o mlo.o  all: ${BINARIES}
         ${CC} ${CFLAGS} ${STATIC_LINK_FLAGS} -o $@ serv2.o serv1.o mlo.o ${LIBS}  
   
 math2ox: math2ox.o math2.o mlo.o serv2.o  serv1.o sm.o sm_ext.o mlo.o: sm.h
         ${CC} ${CFLAGS} ${STATIC_LINK_FLAGS} -o $@ math2ox.o math2.o serv2.o mlo.o ${LIBS}  
   
 math2.c: math2.tm  ox_math: serv1.o sm.o sm_ext.o mlo.o
         -rm -f $@          ${CC} ${CFLAGS} ${STATIC_LINK_FLAGS} -o $@ sm.o sm_ext.o serv1.o mlo.o ${LIBS}
         ${MPREP} $? > $@  
   
   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}
   
 install: install-binary install-document  install: install-binary install-document
   
 install-document:  install-document:
Line 59  clean-for-debug: 
Line 61  clean-for-debug: 
 clean-binary: clean-for-debug  clean-binary: clean-for-debug
   
 clean:  clean:
         -rm -f *.o *~ math2.c ox_math math2ox          -rm -f *.o *~ math2.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.7  
changed lines
  Added in v.1.12

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