| version 1.16, 2003/11/27 03:23:39 |
version 1.27, 2022/09/08 10:49:30 |
|
|
| ### $OpenXM: OpenXM/src/kan96xx/Kan/Makefile.in,v 1.15 2003/11/24 12:38:17 takayama Exp $ |
### $OpenXM: OpenXM/src/kan96xx/Kan/Makefile.in,v 1.26 2021/03/24 04:58:32 takayama Exp $ |
| # |
# |
| # depends on install-gmp, install-gc [install-asir-gc] |
# depends on install-gmp, install-gc [install-asir-gc] |
| # ( cd ../plugin ; make ) |
# ( cd ../plugin ; make ) |
|
|
| all : configure sm1 |
all : configure sm1 |
| # .SUFFIXES: |
# .SUFFIXES: |
| ########################## configuration ############################## |
########################## configuration ############################## |
| OpenXM_HOME=../../.. |
OpenXM_HOME=@prefix@ |
| OpenXM_include=${OpenXM_HOME}/include |
OpenXM_include=${OpenXM_HOME}/include |
| OpenXM_lib=${OpenXM_HOME}/lib |
OpenXM_lib=${OpenXM_HOME}/lib |
| |
# |
| |
OpenXM_HOME_debug=../../.. |
| |
OpenXM_include_debug=${OpenXM_HOME_debug}/include |
| |
OpenXM_lib_debug=${OpenXM_HOME_debug}/lib |
| |
|
| |
AR=@AR@ |
| CC=@CC@ |
CC=@CC@ |
| RANLIB=@RANLIB@ |
RANLIB=@RANLIB@ |
| LIBS=@LIBS@ |
LIBS=@LIBS@ |
| LIBS2 = -L${OpenXM_lib} -lgmp -lgc -lox_pathfinder |
LIBS2_SHARED = -L${OpenXM_lib} -lgmp -lgc -lox_pathfinder |
| |
LIBS2_STATIC = -L${OpenXM_lib} ${OpenXM_lib}/libgmp.a ${OpenXM_lib}/libgc.a -lox_pathfinder -Wl,-no_pie |
| |
LIBS2 = @LIBS2@ |
| #GC = nogc.c |
#GC = nogc.c |
| #STATIC_LINK_FLAG = -static |
#STATIC_LINK_FLAG = -static |
| STATIC_LINK_FLAG = |
STATIC_LINK_FLAG = |
| |
|
| #### Optimization level etc. |
#### Optimization level etc. |
| #### option for gdb CFLAGS = -g, optimize -O, profile -p, -DNOGC |
#### option for gdb CFLAGS = -g, optimize -O, profile -p, -DNOGC |
| CFLAGS = @CFLAGS@ -D_BSD_SOURCE |
CFLAGS = @CFLAGS@ -D_DEFAULT_SOURCE -D_BSD_SOURCE -Wno-trigraphs -fcommon |
| |
|
| ################### Plugin modules |
################### Plugin modules |
| #### (2) cmo, file2, socket |
#### (2) cmo, file2, socket |
| PLUGIN = ../plugin |
PLUGIN = ../plugin |
| TRANS = ../trans |
TRANS = ../trans |
| PLUGIN_PROTOTYPE = $(PLUGIN)/mathcap.h $(PLUGIN)/file2.h $(PLUGIN)/sm1Socket.h $(PLUGIN)/cmo.h $(PLUGIN)/ox.h $(TRANS)/trans.h |
PLUGIN_PROTOTYPE = $(PLUGIN)/mathcap.h $(PLUGIN)/file2.h $(PLUGIN)/sm1Socket.h $(PLUGIN)/cmo.h $(PLUGIN)/ox.h $(PLUGIN)/oxxml.h $(PLUGIN)/oxcgi.h $(TRANS)/trans.h |
| PLUGIN_LIB = $(PLUGIN)/sm1Socket.a $(PLUGIN)/cmo.a $(PLUGIN)/file2.a $(PLUGIN)/ox.a $(TRANS)/trans.a |
PLUGIN_LIB = $(PLUGIN)/sm1Socket.a $(PLUGIN)/cmo.a $(PLUGIN)/file2.a $(PLUGIN)/ox.a $(PLUGIN)/oxxml.a $(PLUGIN)/oxcgi.a $(TRANS)/trans.a |
| PLUGIN_EXT = $(PLUGIN)/file2.hh $(PLUGIN)/sm1Socket.hh $(PLUGIN)/cmo.hh $(PLUGIN)/ox.hh $(TRANS)/trans.hh |
PLUGIN_EXT = $(PLUGIN)/file2.hh $(PLUGIN)/sm1Socket.hh $(PLUGIN)/cmo.hh $(PLUGIN)/ox.hh $(PLUGIN)/oxxml.hh $(PLUGIN)/oxcgi.hh $(TRANS)/trans.hh |
| PLUGIN_SM1 = $(PLUGIN)/sm1Socket.sm1 $(PLUGIN)/file2.sm1 $(PLUGIN)/cmo.sm1 $(PLUGIN)/oxx.sm1 $(TRANS)/trans.sm1 |
PLUGIN_SM1 = $(PLUGIN)/sm1Socket.sm1 $(PLUGIN)/file2.sm1 $(PLUGIN)/cmo.sm1 $(PLUGIN)/oxx.sm1 $(TRANS)/trans.sm1 $(TRANS)/polymake.sm1 |
| PLUGIN_LINKFLAG = |
PLUGIN_LINKFLAG = |
| ############################ end of configuration ######################## |
############################ end of configuration ######################## |
| |
|
| configure: Makefile |
configure: Makefile |
| |
|
| Makefile: Makefile.in |
Makefile: Makefile.in |
| sh ./configure |
sh ./configure --prefix=@prefix@ |
| |
|
| |
|
| HEADERS = datatype.h stackm.h lookup.h extern.h kclass.h |
HEADERS = datatype.h stackm.h lookup.h extern.h kclass.h |
| Line 54 kanlibKclass = Kclass/sample.o Kclass/rawcmo.o Kclass/ |
|
| Line 61 kanlibKclass = Kclass/sample.o Kclass/rawcmo.o Kclass/ |
|
| |
|
| ##### Add also to Kclass/Makefile |
##### Add also to Kclass/Makefile |
| Kclass/sample.o : $(HEADERS) Kclass/sample.c |
Kclass/sample.o : $(HEADERS) Kclass/sample.c |
| (cd Kclass ; make CC=${CC} OpenXM_HOME=../${OpenXM_HOME} CFLAGS='${CFLAGS}' sample.o ) |
(cd Kclass ; make CC=${CC} OpenXM_HOME=@prefix@ CFLAGS='${CFLAGS}' sample.o ) |
| Kclass/rawcmo.o : $(HEADERS) Kclass/rawcmo.c |
Kclass/rawcmo.o : $(HEADERS) Kclass/rawcmo.c |
| (cd Kclass ; make CC=${CC} OpenXM_HOME=../${OpenXM_HOME} CFLAGS='${CFLAGS}' rawcmo.o ) |
(cd Kclass ; make CC=${CC} OpenXM_HOME=@prefix@ CFLAGS='${CFLAGS}' rawcmo.o ) |
| Kclass/indeterminate.o : $(HEADERS) Kclass/indeterminate.c |
Kclass/indeterminate.o : $(HEADERS) Kclass/indeterminate.c |
| (cd Kclass ; make CC=${CC} OpenXM_HOME=../${OpenXM_HOME} CFLAGS='${CFLAGS}' indeterminate.o ) |
(cd Kclass ; make CC=${CC} OpenXM_HOME=@prefix@ CFLAGS='${CFLAGS}' indeterminate.o ) |
| Kclass/tree.o : $(HEADERS) Kclass/tree.c |
Kclass/tree.o : $(HEADERS) Kclass/tree.c |
| (cd Kclass ; make CC=${CC} OpenXM_HOME=../${OpenXM_HOME} CFLAGS='${CFLAGS}' tree.o ) |
(cd Kclass ; make CC=${CC} OpenXM_HOME=@prefix@ CFLAGS='${CFLAGS}' tree.o ) |
| |
|
| |
|
| ###### |
###### |
| Line 90 coeff.o : extern2.h $(HEADERS) |
|
| Line 97 coeff.o : extern2.h $(HEADERS) |
|
| output.o : extern2.h $(HEADERS) |
output.o : extern2.h $(HEADERS) |
| poly.o : extern2.h $(HEADERS) |
poly.o : extern2.h $(HEADERS) |
| rat.o : extern2.h $(HEADERS) |
rat.o : extern2.h $(HEADERS) |
| ext.o : extern2.h $(HEADERS) plugin.h plugin.hh Kclass/tree.hh shell.hh |
ext.o : extern2.h $(HEADERS) plugin.h plugin.hh Kclass/tree.hh |
| sm.o : sm.c $(HEADERS) |
sm.o : sm.c $(HEADERS) |
| shell.o : shell.c $(HEADERS) plugin.h |
shell.o : shell.c $(HEADERS) plugin.h |
| |
|
| Line 107 $(kanlibS4) : $(HEADERS) gradedset.h |
|
| Line 114 $(kanlibS4) : $(HEADERS) gradedset.h |
|
| |
|
| kanlib.a : $(kanlibS1) $(kanlibS2) $(kanlibS3) $(kanlibS4) $(kanlibP) $(kanlibK) $(kanlibK2) $(kanlibKclass) $(PLUGIN_LIB) kanlib.o ${OpenXM_lib}/libox_pathfinder.a |
kanlib.a : $(kanlibS1) $(kanlibS2) $(kanlibS3) $(kanlibS4) $(kanlibP) $(kanlibK) $(kanlibK2) $(kanlibKclass) $(PLUGIN_LIB) kanlib.o ${OpenXM_lib}/libox_pathfinder.a |
| (cd plugin-tmp; /bin/rm -f *.o; ../ar-decomp $(PLUGIN_LIB) ; cp ../kanlib.o .) |
(cd plugin-tmp; /bin/rm -f *.o; ../ar-decomp $(PLUGIN_LIB) ; cp ../kanlib.o .) |
| (cd plugin-tmp; ../ar-decomp ${OpenXM_lib}/libox_pathfinder.a) |
(cd plugin-tmp; ../ar-decomp2 ${OpenXM_lib}/libox_pathfinder.a) |
| ar ru kanlib.a $(kanlibS1) $(kanlibS2) $(kanlibS3) $(kanlibS4) $(kanlibP) $(kanlibK) $(kanlibK2) $(kanlibKclass) plugin-tmp/*.o |
if [ ${AR} = ar ]; then \ |
| |
ar ru kanlib.a $(kanlibS1) $(kanlibS2) $(kanlibS3) $(kanlibS4) $(kanlibP) $(kanlibK) $(kanlibK2) $(kanlibKclass) plugin-tmp/*.o ; \ |
| |
else \ |
| |
libtool -static -o kanlib.a $(kanlibS1) $(kanlibS2) $(kanlibS3) $(kanlibS4) $(kanlibP) $(kanlibK) $(kanlibK2) $(kanlibKclass) $(PLUGIN_LIB) ${OpenXM_lib}/libox_pathfinder.a ; \ |
| |
fi |
| ${RANLIB} kanlib.a |
${RANLIB} kanlib.a |
| |
|
| ############ smacro.h and lookup.h |
############ smacro.h and lookup.h |
| Line 117 smacro.h : smacro.sm1 dr.sm1 module1.sm1 sugar.sm1 usa |
|
| Line 128 smacro.h : smacro.sm1 dr.sm1 module1.sm1 sugar.sm1 usa |
|
| /bin/rm smacro.h |
/bin/rm smacro.h |
| cat smacro.sm1 dr.sm1 module1.sm1 sugar.sm1 usage.sm1 $(PLUGIN_SM1) | ./mm >smacro.h |
cat smacro.sm1 dr.sm1 module1.sm1 sugar.sm1 usage.sm1 $(PLUGIN_SM1) | ./mm >smacro.h |
| |
|
| lookup.h : stackm.h mklookup |
gen-lookup.h : stackm.h mklookup |
| touch lookup.h |
touch lookup.h |
| /bin/rm lookup.h |
/bin/rm lookup.h |
| ./mklookup >lookup.h |
./mklookup >lookup.h |
| Line 144 plugin.sm1 : Makefile $(PLUGIN_SM1) |
|
| Line 155 plugin.sm1 : Makefile $(PLUGIN_SM1) |
|
| echo '%% Do not edit this file.' > plugin.sm1 |
echo '%% Do not edit this file.' > plugin.sm1 |
| |
|
| clean : |
clean : |
| rm -f mklookup mm core sm1 lookup.h smacro.h *.o *~ *.a mon.out sm1.nogc kanlib.a plugin.h plugin.hh plugin-tmp/*.o Kclass/*.o Kclass/*~ makeconf makeconf.sed |
rm -f mklookup mm core sm1 smacro.h *.o *~ *.a mon.out sm1.nogc kanlib.a plugin.h plugin.hh plugin-tmp/*.o Kclass/*.o Kclass/*~ makeconf makeconf.sed |
| distclean : clean |
distclean : clean |
| rm -f Makefile |
rm -f Makefile |