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

Annotation of OpenXM/src/ox_math/Makefile.in, Revision 1.7

1.1       ohara       1: # -*- mode: Makefile -*-
1.7     ! ohara       2: # $OpenXM: OpenXM/src/ox_math/Makefile.in,v 1.6 2000/03/13 06:27:48 ohara Exp $
1.1       ohara       3:
                      4: OpenXM_HOME=../..
                      5:
                      6: PREFIX    = @prefix@
                      7: SYS       = @ml_system@
1.7     ! ohara       8: ADDONSDIR = /usr/local/mathematica/AddOns/MathLink/DevelopersKits/${SYS}/CompilerAdditions
1.1       ohara       9: MPREP     = ${ADDONSDIR}/mprep
                     10:
                     11: LN        = @LN_S@
                     12: CC        = @CC@
                     13: DEFS      = -DDEBUG
1.3       ohara      14: CFLAGS    = -g -O2 ${DEFS} -I${ADDONSDIR} -I${OpenXM_HOME}/include
1.4       ohara      15: LIBS      = @LIBS@ -L${OpenXM_HOME}/lib -lox -lgmp -L${ADDONSDIR} -lML -lm
1.6       ohara      16: STATIC_LINK_FLAGS = @static_link_flags@
                     17:
1.1       ohara      18:
                     19: BINARIES  = ox_math math2ox
                     20: INSTALL   = @INSTALL@
                     21: INSTALL_PROGRAM = @INSTALL_PROGRAM@
                     22:
1.3       ohara      23: all: ${BINARIES}
1.1       ohara      24:
                     25: serv1.o serv2.o mlo.o: serv2.h
                     26:
1.3       ohara      27: ox_math: serv1.o serv2.o mlo.o
1.5       ohara      28:        ${CC} ${CFLAGS} ${STATIC_LINK_FLAGS} -o $@ serv2.o serv1.o mlo.o ${LIBS}
1.1       ohara      29:
1.3       ohara      30: math2ox: math2ox.o math2.o mlo.o serv2.o
1.5       ohara      31:        ${CC} ${CFLAGS} ${STATIC_LINK_FLAGS} -o $@ math2ox.o math2.o serv2.o mlo.o ${LIBS}
1.1       ohara      32:
                     33: math2.c: math2.tm
                     34:        -rm -f $@
                     35:        ${MPREP} $? > $@
                     36:
                     37: install: install-binary install-document
                     38:
                     39: install-document:
                     40:        (cd documents; ${MAKE} install-document)
                     41:
                     42: install-binary:
                     43:        if [ -x ${MPREP} ]; then \
                     44:                ${MAKE} install-binary-real ; \
                     45:        fi
                     46:
                     47: install-binary-real: ${BINARIES}
                     48:        ${INSTALL_PROGRAM} ${BINARIES} ${OpenXM_HOME}/bin/
                     49:        (cd lib; ${MAKE} install)
                     50:
                     51: install-for-debug: ${BINARIES}
                     52:        -for i in ${BINARIES}; do \
                     53:                ${LN} ${OpenXM_HOME}/src/ox_math/$$i ${OpenXM_HOME}/bin ; \
                     54:        done
                     55:
                     56: clean-for-debug:
                     57:        (cd ${OpenXM_HOME}/bin; rm -f ${BINARIES})
                     58:
                     59: clean-binary: clean-for-debug
                     60:
                     61: clean:
1.3       ohara      62:        -rm -f *.o *~ math2.c ox_math math2ox
                     63:
                     64: distclean: clean
                     65:        -rm -f .configure_done configure config.cache config.log config.status Makefile
1.5       ohara      66:

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