=================================================================== RCS file: /home/cvs/OpenXM/src/oxc/Makefile.in,v retrieving revision 1.1 retrieving revision 1.7 diff -u -p -r1.1 -r1.7 --- OpenXM/src/oxc/Makefile.in 2000/10/13 06:05:11 1.1 +++ OpenXM/src/oxc/Makefile.in 2004/12/15 12:24:49 1.7 @@ -1,9 +1,11 @@ -## $OpenXM$ +## $OpenXM: OpenXM/src/oxc/Makefile.in,v 1.6 2004/12/06 14:25:47 ohara Exp $ OpenXM_HOME=../.. CC = @CC@ CFLAGS = @CFLAGS@ -g -Wall -O2 -finline-functions -I${OpenXM_HOME}/src/ox_toolkit -I${OpenXM_HOME}/include -LIBS = @LIBS@ -L${OpenXM_HOME}/lib -lox -lgmp +LIBS = @LIBS@ -L${OpenXM_HOME}/lib -lox -lgc -lgmp +INSTALL = @INSTALL@ +INSTALL_PROGRAM= ${INSTALL} all: oxc @@ -12,11 +14,14 @@ oxc: oxc.o sm.o sm_ext.o sm.o sm_ext.o : sm.h -smtest: smtest.o sm.o sm_ext.o ${GETOPT} - ${CC} -o smtest smtest.o sm.o sm_ext.o ${GETOPT} ${LIBS} +install: oxc + ${INSTALL_PROGRAM} oxc ${OpenXM_HOME}/bin +install-for-debug: oxc + ln -sf `pwd`/oxc ${OpenXM_HOME}/bin + clean: - -rm -f *.o *~ smtest oxc + -rm -f *.o *~ oxc 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