version 1.4, 2000/03/13 09:04:08 |
version 1.44, 2016/03/31 05:27:34 |
|
|
## $OpenXM: OpenXM/src/kxx/Makefile.in,v 1.3 2000/03/13 06:46:39 takayama Exp $ |
## $OpenXM: OpenXM/src/kxx/Makefile.in,v 1.43 2016/03/30 08:25:44 takayama Exp $ |
|
# Depends on all-kan96xx [source tree of kan96xx at ${Kan96xx} is required] |
|
# install-gmp, install-gc, install-util |
|
# |
## Targets : |
## Targets : |
## all : generates ox oxlog ox_sm1 oxweave |
## all : generates ox oxlog ox_sm1 |
## install : copy the binaries to $(OpenXM_bin), |
## install: install-exec install-document |
## remove symbolic link from $(OpenXM_lib)/sm1 to $(KANHOME)/Doc/* |
## install-exec: copy the binaries to ${OpenXM_bin}, |
## copy $(KANHOME)/Doc/* to $(OpenXM_lib)/sm1 |
## remove symbolic link from $(OpenXM_lib)/sm1 to $(Kan96xx)/Doc/* |
|
## copy $(Kan96xx)/Doc/* to $(OpenXM_lib)/sm1 |
## Create symbolic links in $(OpenXM_lib)/sm1/bin |
## Create symbolic links in $(OpenXM_lib)/sm1/bin |
## install-for-debug : |
## install-for-debug : |
## Create symbolic links instead of copying. |
## Create symbolic links instead of copying. |
|
|
## Nothing to do for now. |
## Nothing to do for now. |
## If you change this file, do not forget to run autoconf and remove .configure_done |
## If you change this file, do not forget to run autoconf and remove .configure_done |
######### configurations. |
######### configurations. |
OpenXM_contrib=../../../OpenXM_contrib |
#OpenXM_HOME=../.. |
OpenXM_ROOT=../../../OpenXM |
OpenXM_HOME=@prefix@ |
OpenXM_bin=$(OpenXM_ROOT)/bin |
Kan96xx=../kan96xx |
OpenXM_lib=$(OpenXM_ROOT)/lib |
OpenXM_bin=${OpenXM_HOME}/bin |
KANHOME=$(OpenXM_ROOT)/src/kan96xx |
OpenXM_lib=${OpenXM_HOME}/lib |
|
OpenXM_include=${OpenXM_HOME}/include |
|
OXWEAVE=${OpenXM_bin}/oxweave |
|
KANLIB = ${Kan96xx}/Kan/kanlib.a -L${OpenXM_lib} -lgmp -lgc |
|
# |
|
OpenXM_HOME_for_debug=../.. |
|
OpenXM_bin_for_debug=${OpenXM_HOME_for_debug}/bin |
|
OpenXM_lib_for_debug=${OpenXM_HOME_for_debug}/lib |
|
OpenXM_include_for_debug=${OpenXM_HOME_for_debug}/include |
|
MYSIG=${OpenXM_lib}/mysig.o |
|
########## end of configurations |
CC=@CC@ |
CC=@CC@ |
RANLIB=@RANLIB@ |
RANLIB=@RANLIB@ |
LIBS=@LIBS@ |
LIBS=@LIBS@ |
CFLAGS = -g |
CFLAGS = @CFLAGS@ -g -D_BSD_SOURCE -I${OpenXM_include} |
DDD=-D_BSD_SOURCE |
# University binary is no longer supported. See old configure.in (version 1.7) |
|
# Or use "lipo -create ox-i386 ox-ppc -output ox" |
#STATIC_LINK_FLAG=-static |
#STATIC_LINK_FLAG=-static |
STATIC_LINK_FLAG= |
STATIC_LINK_FLAG= |
########## end of configurations |
RM=rm |
|
|
### Set the server name in oxmain.c if you do not use the environmental |
### Set the server name in oxmain.c if you do not use the environmental |
### variable LOAD_SM1_PATH. cf. $KANHOME/lib/ox.sm1 |
### variable LOAD_SM1_PATH. cf. $Kan96xx/lib/ox.sm1 |
|
|
all : configure all-plugin kanlib.a ox ox_sm1 oxlog oxweave |
all : configure ox ox_sm1 oxlog ox100start ox_texmacs |
|
|
all2 : all-plugin kanlib.a ox ox_sm1 testclient oxlog |
all2 : ox ox_sm1 testclient oxlog |
|
|
configure : Makefile.in configure.in |
configure: Makefile |
echo "You configure is older than Makefine.in and configure.in" |
|
/bin/rm -f .configure_done |
|
autoconf |
|
.error "Run ./make-configure" |
|
|
|
dist : |
Makefile: Makefile.in |
./makeDist |
(rm -f .configure_done ; ./make-configure) |
|
|
## ox_null can no longer be compiled. |
# configure is added to repo for a while. |
|
configure-old : Makefile.in configure.in |
|
echo "Your configure is older than Makefine.in and configure.in" |
|
/bin/rm -f .configure_done |
|
./make-configure |
|
# autoconf |
|
# .error "Run ./make-configure" |
|
|
## This is the Makefile at kxx. |
ox.a: ${Kan96xx}/plugin/ox.a |
## 1998, 2/7 , Old version is at S/kan.backup/kxx.tar.gz.19980206 |
|
## |
|
.c.o : |
|
$(CC) $(CFLAGS) ${DDD} -c $< |
|
|
|
all-plugin : |
|
(cd $(KANHOME)/plugin ; make ) |
|
kanlib.a : |
|
(cd $(KANHOME)/Kan ; make kanlib.a) |
|
ox.a : |
|
/bin/rm -f ox.a |
/bin/rm -f ox.a |
ln -s $(KANHOME)/plugin/ox.a ox.a |
ln -s ${Kan96xx}/plugin/ox.a ox.a |
ox_kan.h : $(KANHOME)/plugin/ox_kan.h |
ox_kan.h: ${Kan96xx}/plugin/ox_kan.h |
/bin/rm -f ox_kan.h |
/bin/rm -f ox_kan.h |
ln -s $(KANHOME)/plugin/ox_kan.h ox_kan.h |
ln -s ${Kan96xx}/plugin/ox_kan.h ox_kan.h |
|
|
ox : oxmain.c $(KANHOME)/plugin/mytcpio.o $(KANHOME)/plugin/oxmisc.o file2.o ox_kan.h |
ox: oxmain.o ${Kan96xx}/plugin/mytcpio.o ${Kan96xx}/plugin/oxmisc.o ${MYSIG} file2.o |
$(CC) ${STATIC_LINK_FLAG} $(CFLAGS) ${DDD} oxmain.c $(KANHOME)/plugin/mytcpio.o $(KANHOME)/plugin/oxmisc.o file2.o -o ox $(LIBS) |
${CC} ${STATIC_LINK_FLAG} ${CFLAGS} oxmain.o ${Kan96xx}/plugin/mytcpio.o ${Kan96xx}/plugin/oxmisc.o ${MYSIG} file2.o -o ox ${LIBS} |
|
oxmain.o: oxmain.c ox_kan.h serversm.h |
|
|
ox_null : oxserver00.c ox.a nullstackmachine.o file2.o ox_kan.h |
oxd: oxd.o xtag.o ${Kan96xx}/plugin/mytcpio.o ${Kan96xx}/plugin/oxmisc.o file2.o |
$(CC) ${STATIC_LINK_FLAG} $(CFLAGS) ${DDD} oxserver00.c ox.a nullstackmachine.o file2.o -o ox_null $(LIBS) ; \ |
${CC} ${STATIC_LINK_FLAG} ${CFLAGS} oxd.o xtag.o ${Kan96xx}/plugin/mytcpio.o ${Kan96xx}/plugin/oxmisc.o file2.o -o oxd ${LIBS} -L{OpenXM_lib} -lgc |
|
oxd.o: oxd.c ox_kan.h serversm.h |
|
xtag.o: xtag.c |
|
oxd-thread: oxd-thread.o xtag.o ${Kan96xx}/plugin/mytcpio.o ${Kan96xx}/plugin/oxmisc.o file2.o |
|
${CC} -pthread ${STATIC_LINK_FLAG} $(CFLAGS) oxd-thread.o xtag.o ${Kan96xx}/plugin/mytcpio.o ${Kan96xx}/plugin/oxmisc.o file2.o -o oxd-thread ${LIBS} |
|
oxd-thread.o: oxd-thread.c ox_kan.h serversm.h |
|
|
ox_sm1 : oxserver00.c sm1stackmachine.o ox_kan.h ox.a $(KANHOME)/Kan/kanlib.a |
ox_null: oxserver00.o ox.a nullstackmachine.o file2.o |
$(CC) ${STATIC_LINK_FLAG} $(CFLAGS) ${DDD} oxserver00.c sm1stackmachine.o -o ox_sm1 $(LIBS) $(KANLIB) |
${CC} ${STATIC_LINK_FLAG} ${CFLAGS} oxserver00.o ox.a nullstackmachine.o file2.o -o ox_null ${LIBS} |
|
oxserver00.o: oxserver00.c ox_kan.h serversm.h |
|
|
oxlog : oxlog.c |
ox_sm1: oxserver00.o sm1stackmachine.o ox.a ${Kan96xx}/Kan/kanlib.a |
$(CC) ${STATIC_LINK_FLAG} ${DDD} -o oxlog oxlog.c |
${CC} ${STATIC_LINK_FLAG} ${CFLAGS} oxserver00.o sm1stackmachine.o -o ox_sm1 ${LIBS} ${KANLIB} |
|
|
oxweave : oxweave.c oxweaveUsage.h |
oxlog: oxlog.o |
$(CC) ${STATIC_LINK_FLAG} ${DDD} -o oxweave -g oxweave.c |
${CC} ${STATIC_LINK_FLAG} -o oxlog oxlog.o |
|
oxlog.o: oxlog.c |
|
|
## file2.c file2.h is in SSkan/plugin/ |
ox100start : ox100start.o ${OpenXM_lib}/libox_pathfinder.a ${MYSIG} |
file2.o : $(KANHOME)/plugin/file2.c $(KANHOME)/plugin/file2.h |
${CC} -I${OpenXM_include} ${STATIC_LINK_FLAG} -o ox100start ox100start.c ${MYSIG} -L${OpenXM_lib} -lox_pathfinder |
$(CC) $(CFLAGS) ${DDD} -DKXX=1 -I$(KANHOME)/plugin -c $(KANHOME)/plugin/file2.c |
ox100start.o: ox100start.c |
|
|
nullstackmachine.o : nullstackmachine.c ox_kan.h |
file2.o: ${Kan96xx}/plugin/file2.c ${Kan96xx}/plugin/file2.h |
sm1stackmachine.o : sm1stackmachine.c ox_kan.h |
${CC} $(CFLAGS) -DKXX=1 -I${Kan96xx}/plugin -c ${Kan96xx}/plugin/file2.c |
|
|
testclient : testclient.c ox.a file2.o ox_kan.h |
nullstackmachine.o: nullstackmachine.c ox_kan.h |
$(CC) $(CFLAGS) ${DDD} testclient.c -o testclient ox.a file2.o $(LIBS) |
sm1stackmachine.o: sm1stackmachine.c ox_kan.h |
|
|
|
testclient: testclient.o ox.a file2.o |
|
${CC} ${CFLAGS} testclient.c -o testclient ox.a file2.o ${LIBS} |
|
testclient.o: testclient.c ox_kan.h |
|
|
#KANLIB = $(KANHOME)/Kan/kanlib.a $(KANHOME)/gmp/libgmp.a $(KANHOME)/gmp/mpn/libmpn.a $(KANHOME)/gc/gc.a |
|
KANLIB = $(KANHOME)/Kan/kanlib.a $(KANHOME)/gmp/libgmp.a $(KANHOME)/gc/gc.a |
|
|
|
## file2 should be linked from kanlib.a |
testclient2a : testclient2.o ox.a ${Kan96xx}/Kan/kanlib.a |
|
${CC} ${CFLAGS} -I${Kan96xx}/Kan testclient2.o ox.a -o testclient2a ${LIBS} ${KANLIB} |
|
testclient2.o: testclient2.c ox_kan.h |
|
|
testclient2a : testclient2.c ox.a ox_kan.h $(KANHOME)/Kan/kanlib.a |
testclient2 : testclient2.o ${Kan96xx}/Kan/kanlib.a ox.a |
$(CC) $(CFLAGS) ${DDD} -I$(KANHOME)/Kan testclient2.c ox.a -o testclient2a $(LIBS) $(KANLIB) |
${CC} ${CFLAGS} -I${Kan96xx}/Kan testclient2.c -o testclient2 ${LIBS} ${KANLIB} |
|
testclient2.o: testclient.c ox_kan.h |
|
|
testclient2 : testclient2.c ox_kan.h $(KANHOME)/Kan/kanlib.a ox.a |
ox_texmacs: ox_texmacs.o ${Kan96xx}/Kan/kanlib.a |
$(CC) $(CFLAGS) ${DDD} -I$(KANHOME)/Kan testclient2.c -o testclient2 $(LIBS) $(KANLIB) |
${CC} ${STATIC_LINK_FLAG} ${CFLAGS} ox_texmacs.o -o ox_texmacs ${LIBS} ${KANLIB} |
|
|
|
clean-done: |
clean : |
-${RM} -f .configure_done |
-/bin/rm -f ox testclient ox_null ox_sm1 testclient2 core *.o a.out *.dvi *.aux openxxx.log ox_sm1 oxlog *~ oxweave openxm-eg.tex openxm-jp.tex .configure_done |
clean: clean-done |
|
-${RM} -f ox testclient ox_null ox_sm1 testclient2 core *.o a.out *.dvi *.aux openxxx.log ox_sm1 oxlog *~ openxm-eg.tex openxm-jp.tex ox100start .prog.ox100bin* .in.ox100bin* ox_texmacs |
distclean : clean clean-for-install |
distclean : clean clean-for-install |
/bin/rm -f config.status config.cache config.log |
/bin/rm -f config.status config.cache config.log |
|
|
## install targets. |
## install targets. |
install-for-debug : clean-for-install install_lib_bin-for-debug |
install-for-debug : clean-for-install install_lib_bin-for-debug |
/bin/rm -f ../bin/ox ../bin/ox_sm1 ../bin/oxlog ../bin/oxweave |
${RM} -f ${OpenXM_bin_for_debug}/ox ${OpenXM_bin_for_debug}/ox_sm1 ${OpenXM_bin_for_debug}/oxlog ${OpenXM_bin_for_debug}/ox100start ${OpenXM_bin_for_debug}/ox_texmacs |
ln -f -s ../src/kxx/ox ../bin/ox |
ln -f -s ../src/kxx/ox ${OpenXM_bin_for_debug}/ox |
ln -f -s ../src/kxx/ox_sm1 ../bin/ox_sm1 |
ln -f -s ../src/kxx/ox_sm1 ${OpenXM_bin_for_debug}/ox_sm1 |
ln -f -s ../src/kxx/oxlog ../bin/oxlog |
ln -f -s ../src/kxx/oxlog ${OpenXM_bin_for_debug}/oxlog |
ln -f -s ../src/kxx/oxweave ../bin/oxweave |
ln -f -s ../src/kxx/ox100start ${OpenXM_bin_for_debug}/ox100start |
|
ln -f -s ../src/kxx/ox_texmacs ${OpenXM_bin_for_debug}/ox_texmacs |
|
|
install_lib_bin-for-debug : |
install_lib_bin-for-debug : |
ln -f -s ../src/kan96xx/Doc $(OpenXM_lib)/sm1 |
ln -f -s ../src/kan96xx/Doc ${OpenXM_lib_for_debug}/sm1 |
/bin/rm -f $(OpenXM_lib)/sm1/bin/ox* |
${RM} -f ${OpenXM_lib_for_debug}/sm1/bin/ox* |
ln -f -s ../../../bin/ox $(OpenXM_lib)/sm1/bin/ox |
ln -f -s ../../../../bin/ox ${OpenXM_lib_for_debug}/sm1/bin/ox |
ln -f -s ../../../bin/oxlog $(OpenXM_lib)/sm1/bin/oxlog |
ln -f -s ../../../../bin/oxlog ${OpenXM_lib_for_debug}/sm1/bin/oxlog |
ln -f -s ../../../bin/ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1 |
ln -f -s ../../../../bin/ox_sm1 ${OpenXM_lib_for_debug}/sm1/bin/ox_sm1 |
ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_forAsir |
ln -f -s ./ox_sm1 ${OpenXM_lib_for_debug}/sm1/bin/ox_sm1_forAsir |
ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_gnuplot |
ln -f -s ./ox_sm1 ${OpenXM_lib_for_debug}/sm1/bin/ox_sm1_gnuplot |
ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_phc |
ln -f -s ./ox_sm1 ${OpenXM_lib_for_debug}/sm1/bin/ox_sm1_phc |
ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_tigers |
ln -f -s ./ox_sm1 ${OpenXM_lib_for_debug}/sm1/bin/ox_sm1_tigers |
ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_basicCD |
ln -f -s ./ox_sm1 ${OpenXM_lib_for_debug}/sm1/bin/ox_sm1_basicCD |
|
install: install-exec |
|
install-exec: copy-kan-lib install_lib_bin |
|
install ox ox_sm1 oxlog ox100start ox_texmacs ${OpenXM_bin} |
|
install_lib_bin: |
|
if [ "`uname | sed -e 's/_.*$$//'`" = "CYGWIN" ]; then \ |
|
make install_lib_bin_windows ; \ |
|
elif [ "`uname | sed -e 's/_.*$$//'`" = "MSYS" ]; then \ |
|
make install_lib_bin_windows ; \ |
|
else \ |
|
make install_lib_bin_unix ; \ |
|
fi |
|
install_lib_bin_unix: |
|
${RM} -f ${OpenXM_lib}/sm1/bin/ox* |
|
ln -f -s ../../../bin/ox ${OpenXM_lib}/sm1/bin/ox |
|
ln -f -s ../../../bin/oxlog ${OpenXM_lib}/sm1/bin/oxlog |
|
ln -f -s ../../../bin/ox_sm1 ${OpenXM_lib}/sm1/bin/ox_sm1 |
|
ln -f -s ./ox_sm1 ${OpenXM_lib}/sm1/bin/ox_sm1_forAsir |
|
ln -f -s ./ox_sm1 ${OpenXM_lib}/sm1/bin/ox_sm1_gnuplot |
|
ln -f -s ./ox_sm1 ${OpenXM_lib}/sm1/bin/ox_sm1_phc |
|
ln -f -s ./ox_sm1 ${OpenXM_lib}/sm1/bin/ox_sm1_tigers |
|
ln -f -s ./ox_sm1 ${OpenXM_lib}/sm1/bin/ox_sm1_basicCD |
|
install_lib_bin_windows : |
|
-mkdir ${OpenXM_lib}/sm1/bin |
|
${RM} -f ${OpenXM_lib}/sm1/bin/ox* |
|
install ox ${OpenXM_lib}/sm1/bin/ox |
|
install oxlog ${OpenXM_lib}/sm1/bin/oxlog |
|
install ox_sm1 ${OpenXM_lib}/sm1/bin/ox_sm1 |
|
install ox_sm1 ${OpenXM_lib}/sm1/bin/ox_sm1_forAsir |
|
install ox_sm1 ${OpenXM_lib}/sm1/bin/ox_sm1_gnuplot |
|
install ox_sm1 ${OpenXM_lib}/sm1/bin/ox_sm1_phc |
|
install ox_sm1 ${OpenXM_lib}/sm1/bin/ox_sm1_tigers |
|
install ox_sm1 ${OpenXM_lib}/sm1/bin/ox_sm1_basicCD |
|
#obsolete, it should be removed later |
|
install_lib_bin_windows_old : |
|
-mkdir ${OpenXM_lib}/sm1/bin |
|
${RM} -f ${OpenXM_lib}/sm1/bin/ox* |
|
cp ox.exe ${OpenXM_lib}/sm1/bin/ox.exe |
|
cp oxlog.exe ${OpenXM_lib}/sm1/bin/oxlog.exe |
|
cp ox_sm1.exe ${OpenXM_lib}/sm1/bin/ox_sm1.exe |
|
cp ox_sm1.exe ${OpenXM_lib}/sm1/bin/ox_sm1_forAsir.exe |
|
cp ox_sm1.exe ${OpenXM_lib}/sm1/bin/ox_sm1_gnuplot.exe |
|
cp ox_sm1.exe ${OpenXM_lib}/sm1/bin/ox_sm1_phc.exe |
|
cp ox_sm1.exe ${OpenXM_lib}/sm1/bin/ox_sm1_tigers.exe |
|
cp ox_sm1.exe ${OpenXM_lib}/sm1/bin/ox_sm1_basicCD.exe |
|
|
install : copy-kan-lib install_lib_bin |
|
cp -f ox ox_sm1 oxlog oxweave $(OpenXM_bin) |
|
|
|
install_lib_bin : |
|
/bin/rm -f $(OpenXM_lib)/sm1/bin/ox* |
|
ln -f -s ../../../bin/ox $(OpenXM_lib)/sm1/bin/ox |
|
ln -f -s ../../../bin/oxlog $(OpenXM_lib)/sm1/bin/oxlog |
|
ln -f -s ../../../bin/ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1 |
|
ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_forAsir |
|
ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_gnuplot |
|
ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_phc |
|
ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_tigers |
|
ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_basicCD |
|
|
|
# This target overrides the symbolic link |
# This target overrides the symbolic link |
# from $(OpenXM_ROOT)/src/kan96xx/lib to $(OpenXM_lib)/sm1 |
# from $(OpenXM_HOME)/src/kan96xx/lib to $(OpenXM_lib)/sm1 |
# generated in the top level Makefile |
# generated in the top level Makefile |
|
# Don't do it: cp $(OpenXM_lib)/sm1/ox-win.sm1 $(OpenXM_lib)/sm1/ox.sm1 ; |
copy-kan-lib : clean-for-install |
copy-kan-lib : clean-for-install |
mkdir $(OpenXM_lib)/sm1 |
mkdir ${OpenXM_lib}/sm1 |
touch $(OpenXM_lib)/sm1/DO_NOT_EDIT_THIS_DIRECTORY._ALL_FILES_ARE_COPIED_FROM_kan96xx_Doc |
touch ${OpenXM_lib}/sm1/DO_NOT_EDIT_THIS_DIRECTORY._ALL_FILES_ARE_COPIED_FROM_kan96xx_Doc |
cp -r $(KANHOME)/Doc/* $(OpenXM_lib)/sm1 |
-if [ "`uname | sed -e 's/_.*$$//'`" = "CYGWIN" ]; then \ |
-/bin/rm -rf $(OpenXM_lib)/sm1/CVS |
cp ${Kan96xx}/Doc/* ${OpenXM_lib}/sm1 ; \ |
cp $(KANHOME)/Kan/var.sm1 $(OpenXM_lib)/sm1 |
cp -r ${Kan96xx}/Doc/Resource ${OpenXM_lib}/sm1 ; \ |
|
mkdir ${OpenXM_lib}/sm1/bin ; \ |
|
else \ |
|
cp -r ${Kan96xx}/Doc/* ${OpenXM_lib}/sm1 ; \ |
|
fi |
|
-/bin/rm -rf ${OpenXM_lib}/sm1/CVS |
|
-/bin/rm -f ${OpenXM_lib}/sm1/var.sm1 |
|
cp ${Kan96xx}/Kan/var.sm1 ${OpenXM_lib}/sm1 |
clean-for-install : |
clean-for-install : |
-/bin/rm -rf $(OpenXM_lib)/sm1 |
-/bin/rm -rf ${OpenXM_lib}/sm1 |
-/bin/rm -rf $(OpenXM_bin)/oxlog $(OpenXM_bin)/oxweave $(OpenXM_bin)/ox_sm1 $(OpenXM_bin)/ox |
-/bin/rm -rf ${OpenXM_bin}/oxlog ${OpenXM_bin}/ox_sm1 ${OpenXM_bin}/ox ${OpenXM_bin}/ox100start ${OpenXM_bin}/ox_texmacs |
|
|
|
|
|
|
Line 162 doc: openxxx.tex |
|
Line 221 doc: openxxx.tex |
|
-/bin/rm openxm-eg.tex openxm-jp.tex |
-/bin/rm openxm-eg.tex openxm-jp.tex |
echo "% DO NOT EDIT THIS FILE. This is automatically generated from openxxx.tex" >openxm-eg.tex |
echo "% DO NOT EDIT THIS FILE. This is automatically generated from openxxx.tex" >openxm-eg.tex |
echo "% DO NOT EDIT THIS FILE. This is automatically generated from openxxx.tex" >openxm-jp.tex |
echo "% DO NOT EDIT THIS FILE. This is automatically generated from openxxx.tex" >openxm-jp.tex |
./oxweave $(OXWEAVEFLAG) C eg <openxxx.tex >>openxm-eg.tex |
${OXWEAVE} ${OXWEAVEFLAG} C eg <openxxx.tex >>openxm-eg.tex |
./oxweave $(OXWEAVEFLAG) C jp <openxxx.tex >>openxm-jp.tex |
${OXWEAVE} ${OXWEAVEFLAG} C jp <openxxx.tex >>openxm-jp.tex |
|
|
clean-binary : |
|
echo " ../open-sm1-binary* will be removed" |
|
echo "after 10 seconds. To cancel type in ctrl-C." |
|
( sleep 10 ; /bin/rm -rf ../open-sm1-binary* ) |
|
|
|
|
|