version 1.15, 2003/03/10 10:35:50 |
version 1.18, 2003/09/10 16:00:09 |
|
|
# -*- mode: Makefile -*- |
# -*- mode: Makefile -*- |
# $OpenXM: OpenXM/src/ox_math/Makefile.in,v 1.14 2003/02/04 14:21:17 ohara Exp $ |
# $OpenXM: OpenXM/src/ox_math/Makefile.in,v 1.17 2003/03/30 08:07:09 ohara Exp $ |
|
|
OpenXM_HOME=../.. |
OpenXM_HOME=../.. |
|
|
Line 10 MPREP = ${ADDONSDIR}/mprep |
|
Line 10 MPREP = ${ADDONSDIR}/mprep |
|
|
|
LN = @LN_S@ |
LN = @LN_S@ |
CC = @CC@ |
CC = @CC@ |
DEFS = -DDEBUG |
DEFS = @DEFS@ |
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 |
GMPLIB = @GMPLIB@ |
STATIC_LINK_FLAGS = @static_link_flags@ |
LIBS = @LIBS@ -L${OpenXM_HOME}/lib -lox -lgc -L${ADDONSDIR} -lML -lm |
|
# STATIC_LINK_FLAGS = @static_link_flags@ |
TM_C = math2.c int.c |
TM_C = math2.c int.c |
|
|
BINARIES = ox_math math2ox test1 test2 |
BINARIES = ox_math math2ox test1 test2 |
|
|
-rm -f *.o *~ ${TM_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 config.cache config.log config.status Makefile |
|
|