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

Annotation of OpenXM/src/kxx/Makefile.in, Revision 1.11

1.11    ! noro        1: ##  $OpenXM: OpenXM/src/kxx/Makefile.in,v 1.10 2001/12/24 01:29:45 takayama Exp $
1.1       takayama    2: ## Targets :
                      3: ##   all  : generates ox oxlog ox_sm1 oxweave
                      4: ##   install : copy the binaries to $(OpenXM_bin),
                      5: ##             remove symbolic link from $(OpenXM_lib)/sm1 to $(KANHOME)/Doc/*
                      6: ##             copy $(KANHOME)/Doc/* to $(OpenXM_lib)/sm1
                      7: ##             Create symbolic links in $(OpenXM_lib)/sm1/bin
                      8: ##   install-for-debug :
                      9: ##             Create symbolic links instead of copying.
                     10: ##   install-document :
                     11: ##             Nothing to do for now.
                     12: ## If you change this file, do not forget to run autoconf and remove .configure_done
                     13: ######### configurations.
                     14: OpenXM_contrib=../../../OpenXM_contrib
                     15: OpenXM_ROOT=../../../OpenXM
                     16: OpenXM_bin=$(OpenXM_ROOT)/bin
                     17: OpenXM_lib=$(OpenXM_ROOT)/lib
                     18: KANHOME=$(OpenXM_ROOT)/src/kan96xx
                     19: CC=@CC@
                     20: RANLIB=@RANLIB@
                     21: LIBS=@LIBS@
                     22: CFLAGS = -g
                     23: DDD=-D_BSD_SOURCE
1.3       takayama   24: #STATIC_LINK_FLAG=-static
1.4       takayama   25: STATIC_LINK_FLAG=
1.1       takayama   26: ########## end of configurations
                     27:
                     28: ### Set the server name in oxmain.c if you do not use the environmental
                     29: ### variable LOAD_SM1_PATH.  cf. $KANHOME/lib/ox.sm1
                     30:
                     31: all : configure all-plugin kanlib.a ox ox_sm1  oxlog oxweave
                     32:
                     33: all2 : all-plugin kanlib.a ox ox_sm1 testclient oxlog
                     34:
1.7       takayama   35: configure: Makefile
                     36:
                     37: Makefile: Makefile.in
                     38:        ./configure
                     39:
                     40: # configure is added to repo for a while.
                     41: configure-old : Makefile.in configure.in
                     42:        echo "Your configure is older than Makefine.in and configure.in"
1.1       takayama   43:        /bin/rm -f .configure_done
1.6       takayama   44:        ./make-configure
                     45: #      autoconf
                     46: #      .error  "Run ./make-configure"
1.1       takayama   47:
                     48: dist :
                     49:        ./makeDist
                     50:
                     51: ## ox_null can no longer be compiled.
                     52:
                     53: ## This is the Makefile at kxx.
                     54: ## 1998, 2/7  , Old version is at S/kan.backup/kxx.tar.gz.19980206
                     55: ##
                     56: .c.o :
                     57:        $(CC)  $(CFLAGS) ${DDD} -c  $<
                     58:
                     59: all-plugin :
                     60:        (cd $(KANHOME)/plugin ; make )
                     61: kanlib.a :
                     62:        (cd $(KANHOME)/Kan ; make kanlib.a)
                     63: ox.a :
                     64:        /bin/rm -f ox.a
                     65:        ln -s $(KANHOME)/plugin/ox.a ox.a
                     66: ox_kan.h : $(KANHOME)/plugin/ox_kan.h
                     67:        /bin/rm -f ox_kan.h
                     68:        ln -s $(KANHOME)/plugin/ox_kan.h ox_kan.h
                     69:
                     70: ox : oxmain.c $(KANHOME)/plugin/mytcpio.o $(KANHOME)/plugin/oxmisc.o file2.o ox_kan.h
1.3       takayama   71:        $(CC) ${STATIC_LINK_FLAG} $(CFLAGS) ${DDD} oxmain.c $(KANHOME)/plugin/mytcpio.o $(KANHOME)/plugin/oxmisc.o file2.o -o ox  $(LIBS)
1.1       takayama   72:
                     73: ox_null : oxserver00.c ox.a nullstackmachine.o file2.o ox_kan.h
1.3       takayama   74:        $(CC)  ${STATIC_LINK_FLAG} $(CFLAGS)  ${DDD} oxserver00.c ox.a nullstackmachine.o file2.o -o ox_null  $(LIBS) ; \
1.1       takayama   75:
                     76: ox_sm1 : oxserver00.c sm1stackmachine.o ox_kan.h ox.a $(KANHOME)/Kan/kanlib.a
1.3       takayama   77:        $(CC)  ${STATIC_LINK_FLAG} $(CFLAGS)  ${DDD} oxserver00.c sm1stackmachine.o -o ox_sm1  $(LIBS) $(KANLIB)
1.1       takayama   78:
                     79: oxlog : oxlog.c
1.3       takayama   80:        $(CC)   ${STATIC_LINK_FLAG} ${DDD} -o oxlog oxlog.c
1.1       takayama   81:
                     82: oxweave : oxweave.c oxweaveUsage.h
1.3       takayama   83:        $(CC)   ${STATIC_LINK_FLAG} ${DDD} -o oxweave -g oxweave.c
1.1       takayama   84:
                     85: ## file2.c file2.h is in SSkan/plugin/
                     86: file2.o : $(KANHOME)/plugin/file2.c  $(KANHOME)/plugin/file2.h
                     87:        $(CC) $(CFLAGS)  ${DDD} -DKXX=1 -I$(KANHOME)/plugin -c $(KANHOME)/plugin/file2.c
                     88:
                     89: nullstackmachine.o : nullstackmachine.c ox_kan.h
                     90: sm1stackmachine.o : sm1stackmachine.c  ox_kan.h
                     91:
                     92: testclient : testclient.c ox.a file2.o ox_kan.h
                     93:        $(CC) $(CFLAGS)  ${DDD} testclient.c -o testclient ox.a file2.o $(LIBS)
                     94:
                     95:
1.5       takayama   96: #KANLIB = $(KANHOME)/Kan/kanlib.a $(OpenXM_lib)/libgmp.a $(KANHOME)/gmp/mpn/libmpn.a $(KANHOME)/gc/gc.a
                     97: KANLIB = $(KANHOME)/Kan/kanlib.a $(OpenXM_lib)/libgmp.a $(KANHOME)/gc/gc.a
1.1       takayama   98:
                     99: ## file2 should be linked from kanlib.a
                    100:
                    101: testclient2a : testclient2.c ox.a  ox_kan.h $(KANHOME)/Kan/kanlib.a
                    102:        $(CC) $(CFLAGS)  ${DDD} -I$(KANHOME)/Kan testclient2.c ox.a  -o testclient2a  $(LIBS) $(KANLIB)
                    103:
                    104: testclient2 : testclient2.c  ox_kan.h $(KANHOME)/Kan/kanlib.a ox.a
                    105:        $(CC) $(CFLAGS)  ${DDD} -I$(KANHOME)/Kan testclient2.c -o testclient2  $(LIBS) $(KANLIB)
                    106:
                    107:
                    108: clean :
                    109:        -/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
                    110:
                    111: distclean : clean clean-for-install
                    112:        /bin/rm -f config.status config.cache config.log
                    113:
                    114: ## install targets.
                    115: install-for-debug : clean-for-install install_lib_bin-for-debug
                    116:        /bin/rm -f ../bin/ox ../bin/ox_sm1 ../bin/oxlog ../bin/oxweave
                    117:        ln -f -s  ../src/kxx/ox ../bin/ox
                    118:        ln -f -s  ../src/kxx/ox_sm1 ../bin/ox_sm1
                    119:        ln -f -s  ../src/kxx/oxlog ../bin/oxlog
                    120:        ln -f -s  ../src/kxx/oxweave ../bin/oxweave
                    121:
                    122: install_lib_bin-for-debug :
                    123:        ln -f -s ../src/kan96xx/Doc $(OpenXM_lib)/sm1
                    124:        /bin/rm -f $(OpenXM_lib)/sm1/bin/ox*
                    125:        ln -f -s ../../../bin/ox $(OpenXM_lib)/sm1/bin/ox
                    126:        ln -f -s ../../../bin/oxlog $(OpenXM_lib)/sm1/bin/oxlog
                    127:        ln -f -s ../../../bin/ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1
                    128:        ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_forAsir
                    129:        ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_gnuplot
                    130:        ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_phc
                    131:        ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_tigers
                    132:        ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_basicCD
                    133: install : copy-kan-lib install_lib_bin
1.11    ! noro      134:        if [  "`uname | sed -e 's/_.*$$//'`" = "CYGWIN" ]; then \
1.8       takayama  135:          cp -f ox.exe ox_sm1.exe oxlog.exe oxweave.exe $(OpenXM_bin) ; \
                    136:        else \
                    137:          cp -f ox ox_sm1 oxlog oxweave $(OpenXM_bin) ; \
                    138:        fi
1.9       takayama  139: install_lib_bin:
1.11    ! noro      140:        if [  "`uname | sed -e 's/_.*$$//'`" = "CYGWIN" ]; then \
1.9       takayama  141:          make install_lib_bin_windows ; \
                    142:        else \
                    143:          make install_lib_bin_unix ; \
                    144:        fi
                    145: install_lib_bin_unix :
1.1       takayama  146:        /bin/rm -f $(OpenXM_lib)/sm1/bin/ox*
                    147:        ln -f -s ../../../bin/ox $(OpenXM_lib)/sm1/bin/ox
                    148:        ln -f -s ../../../bin/oxlog $(OpenXM_lib)/sm1/bin/oxlog
                    149:        ln -f -s ../../../bin/ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1
                    150:        ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_forAsir
                    151:        ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_gnuplot
                    152:        ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_phc
                    153:        ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_tigers
                    154:        ln -f -s ./ox_sm1 $(OpenXM_lib)/sm1/bin/ox_sm1_basicCD
1.9       takayama  155: install_lib_bin_windows :
                    156:        -mkdir $(OpenXM_lib)/sm1/bin
                    157:        /bin/rm -f $(OpenXM_lib)/sm1/bin/ox*
                    158:        cp ox.exe $(OpenXM_lib)/sm1/bin/ox.exe
                    159:        cp oxlog.exe $(OpenXM_lib)/sm1/bin/oxlog.exe
                    160:        cp ox_sm1.exe $(OpenXM_lib)/sm1/bin/ox_sm1.exe
                    161:        cp ox_sm1.exe $(OpenXM_lib)/sm1/bin/ox_sm1_forAsir.exe
                    162: #      cp ox_sm1.exe $(OpenXM_lib)/sm1/bin/ox_sm1_gnuplot.exe
                    163: #      cp ox_sm1.exe $(OpenXM_lib)/sm1/bin/ox_sm1_phc.exe
                    164:        cp ox_sm1.exe $(OpenXM_lib)/sm1/bin/ox_sm1_tigers.exe
                    165:        cp ox_sm1.exe $(OpenXM_lib)/sm1/bin/ox_sm1_basicCD.exe
                    166:
1.1       takayama  167:
                    168: # This target overrides the symbolic link
                    169: # from $(OpenXM_ROOT)/src/kan96xx/lib to $(OpenXM_lib)/sm1
                    170: # generated in the top level Makefile
1.10      takayama  171: # Don't do it: cp $(OpenXM_lib)/sm1/ox-win.sm1 $(OpenXM_lib)/sm1/ox.sm1 ;
1.1       takayama  172: copy-kan-lib : clean-for-install
                    173:        mkdir $(OpenXM_lib)/sm1
                    174:        touch $(OpenXM_lib)/sm1/DO_NOT_EDIT_THIS_DIRECTORY._ALL_FILES_ARE_COPIED_FROM_kan96xx_Doc
1.11    ! noro      175:        if [  "`uname | sed -e 's/_.*$$//'`" = "CYGWIN" ]; then \
1.9       takayama  176:          cp $(KANHOME)/Doc/* $(OpenXM_lib)/sm1 ; \
                    177:          mkdir $(OpenXM_lib)/sm1/bin ; \
                    178:        else \
                    179:          cp -r $(KANHOME)/Doc/* $(OpenXM_lib)/sm1 ; \
1.8       takayama  180:        fi
1.1       takayama  181:        -/bin/rm -rf $(OpenXM_lib)/sm1/CVS
                    182:        cp $(KANHOME)/Kan/var.sm1 $(OpenXM_lib)/sm1
                    183: clean-for-install :
                    184:        -/bin/rm -rf $(OpenXM_lib)/sm1
                    185:        -/bin/rm -rf $(OpenXM_bin)/oxlog $(OpenXM_bin)/oxweave $(OpenXM_bin)/ox_sm1 $(OpenXM_bin)/ox
                    186:
                    187:
                    188:
                    189: ## openxm document generation.
                    190: install-document :
                    191:        echo "Do nothing for now"
                    192:
                    193: OXWEAVEFLAG=--recursive
                    194: doc:  openxxx.tex
                    195:        -/bin/rm openxm-eg.tex openxm-jp.tex
                    196:        echo "% DO NOT EDIT THIS FILE. This is automatically generated from openxxx.tex" >openxm-eg.tex
                    197:        echo "% DO NOT EDIT THIS FILE. This is automatically generated from openxxx.tex" >openxm-jp.tex
                    198:        ./oxweave $(OXWEAVEFLAG) C eg <openxxx.tex >>openxm-eg.tex
                    199:        ./oxweave $(OXWEAVEFLAG) C jp <openxxx.tex >>openxm-jp.tex
                    200:
                    201: clean-binary :
                    202:        echo " ../open-sm1-binary*  will be removed"
                    203:        echo "after 10 seconds. To cancel type in ctrl-C."
                    204:        ( sleep 10 ; /bin/rm -rf ../open-sm1-binary* )
                    205:
                    206:

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