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

Annotation of OpenXM/src/oxc/Makefile.in, Revision 1.1

1.1     ! ohara       1: ## $OpenXM$
        !             2:
        !             3: OpenXM_HOME=../..
        !             4: CC         = @CC@
        !             5: CFLAGS     = @CFLAGS@ -g -Wall -O2 -finline-functions -I${OpenXM_HOME}/src/ox_toolkit -I${OpenXM_HOME}/include
        !             6: LIBS       = @LIBS@ -L${OpenXM_HOME}/lib -lox -lgmp
        !             7:
        !             8: all: oxc
        !             9:
        !            10: oxc: oxc.o sm.o sm_ext.o
        !            11:        ${CC} -o oxc oxc.o sm.o sm_ext.o ${LIBS}
        !            12:
        !            13: sm.o sm_ext.o : sm.h
        !            14:
        !            15: smtest: smtest.o sm.o sm_ext.o ${GETOPT}
        !            16:        ${CC} -o smtest smtest.o sm.o sm_ext.o ${GETOPT} ${LIBS}
        !            17:
        !            18: clean:
        !            19:        -rm -f *.o *~ smtest oxc
        !            20:
        !            21: distclean: clean
        !            22:        -rm -f .configure_done configure config.cache config.log config.status Makefile

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