| version 1.11, 2000/01/10 19:17:24 |
version 1.26, 2001/05/20 07:48:17 |
|
|
| ## $OpenXM: OpenXM/src/kan96xx/Makefile,v 1.10 2000/01/10 19:11:59 maekawa Exp $ |
## $OpenXM: OpenXM/src/kan96xx/Makefile,v 1.25 2000/12/25 06:19:10 takayama Exp $ |
| |
|
| ## Type in make configure and make all to build all |
## Type in make configure and make all to build all |
| |
TOPDIR=../../../OpenXM |
| OpenXM_contrib=../../../OpenXM_contrib |
OpenXM_contrib=../../../OpenXM_contrib |
| OPENXM_CONTRIB=../../../OpenXM_contrib |
OpenXM_ROOT=${TOPDIR} |
| GC=$(OPENXM_CONTRIB)/gc |
OpenXM_bin=$(OpenXM_ROOT)/bin |
| GMP=$(OPENXM_CONTRIB)/gmp |
|
| |
|
| all : all-gc all-gmp |
GC=${OpenXM_contrib}/gc |
| (cd plugin; make all) |
|
| (cd Kan; make all) |
|
| |
|
| all2 : all-gc all-gmp |
all : all-plugin all-sm1 all-kanlib.a |
| |
## .SUFFIXES: |
| |
|
| |
all2 : all-gc |
| (cd Kan; make all) |
(cd Kan; make all) |
| |
|
| all-gc: |
all-gc: configure_symbolic_links |
| (cd $(GC) ; make all) |
(cd $(GC) ; make all) |
| |
|
| all-gmp: configure-gmp |
|
| if test -f /usr/lib/libgmp.a ; \ |
|
| then \ |
|
| echo "Using /usr/lib/libgmp.a" ; \ |
|
| /bin/rm -rf $(GMP)/libgmp.a ; \ |
|
| ln -s /usr/lib/libgmp.a $(GMP)/libgmp.a ; \ |
|
| else \ |
|
| (cd $(GMP) ; make) ; \ |
|
| fi |
|
| |
|
| |
all-sm1 : all-plugin |
| |
(cd Kan; make all) |
| |
|
| |
all-plugin : configure_symbolic_links |
| |
(cd plugin ; make all) |
| |
|
| |
all-kanlib.a : all-plugin |
| |
(cd Kan ; make kanlib.a) |
| |
|
| |
|
| |
|
| ### When you make sm1 without the garbage collector, type in make sm1.nogc |
### When you make sm1 without the garbage collector, type in make sm1.nogc |
| sm1.nogc : |
sm1.nogc : |
| (cd Kan; make sm1.nogc) |
(cd Kan; make sm1.nogc) |
| |
|
| configure: configure_symbolic_links configure-gmp |
configure: configure_symbolic_links |
| |
(cd Kan; sh configure) |
| |
|
| configure-gmp: |
|
| (cd $(GMP) ; ./configure) |
|
| |
|
| configure_symbolic_links : |
configure_symbolic_links : |
| /bin/rm -f gc gmp lib Doc/var.sm1 |
@if test ! -f ./.done_links ; \ |
| ln -f -s $(OpenXM_contrib)/gc gc |
then \ |
| ln -f -s $(OpenXM_contrib)/gmp gmp |
/bin/rm -f gc gmp lib Doc/var.sm1 ; \ |
| # ln -f -s gmp-2.0.2-ssh-2 gmp |
ln -f -s ${OpenXM_contrib}/gc gc ; \ |
| ln -f -s ./Doc lib |
ln -f -s ${OpenXM_contrib}/gmp gmp ; \ |
| (cd Doc; ln -f -s ../Kan/var.sm1 var.sm1) |
ln -f -s ./Doc lib ; \ |
| |
(cd Doc; ln -f -s ../Kan/var.sm1 var.sm1) ; \ |
| |
fi |
| |
@touch ./.done_links |
| |
|
| ### generate a distribution. |
### generate a distribution. |
| dist : |
dist : |
| ./makeDist |
./makeDist |
| ############### |
############### |
| install : |
install : install-bin-OpenXM install-doc install-man |
| |
|
| |
install.man: install-man #aliases |
| |
|
| |
install-man : |
| |
@if [ ! -d $(OpenXM_ROOT)/man ]; then \ |
| |
mkdir $(OpenXM_ROOT)/man ; \ |
| |
fi |
| |
@if [ ! -d $(OpenXM_ROOT)/man/man1 ]; then \ |
| |
mkdir $(OpenXM_ROOT)/man/man1 ; \ |
| |
fi |
| |
-cp Doc/sm1.1 $(OpenXM_ROOT)/man/man1 |
| |
|
| |
install-usr-local: install-bin-usr-local #alias |
| |
|
| |
install-bin-usr-local : |
| mkdir /usr/local/lib/sm1 |
mkdir /usr/local/lib/sm1 |
| cp lib/* /usr/local/lib/sm1 |
cp lib/* /usr/local/lib/sm1 |
| cp Kan/sm1 /usr/local/bin |
cp Kan/sm1 /usr/local/bin |
|
|
| echo " ../kanbinary* will be removed" |
echo " ../kanbinary* will be removed" |
| echo "after 10 seconds. To cancel type in ctrl-C." |
echo "after 10 seconds. To cancel type in ctrl-C." |
| ( sleep 10 ; /bin/rm -rf ../kanbinary* ) |
( sleep 10 ; /bin/rm -rf ../kanbinary* ) |
| install-openXM-bin : |
|
| /bin/rm -f ../bin/sm1 |
|
| cp Kan/sm1 ../bin |
|
| install2 : |
|
| /bin/rm -f ../bin/sm1 |
|
| ln -f -s ../src/kan96xx/Kan/sm1 ../bin/sm1 |
|
| |
|
| ############## |
install-openXM-bin: install-bin-OpenXM #alias |
| clean : |
|
| if test -f $(GMP)/Makefile ; \ |
install-bin-OpenXM: clean-for-debug |
| then \ |
if [ "`uname`" = "CYGWIN_NT-5.0" ]; then \ |
| (cd $(GMP) ; make clean) ; \ |
cp Kan/sm1.exe $(OpenXM_bin) ; \ |
| |
else \ |
| |
cp Kan/sm1 $(OpenXM_bin) ; \ |
| fi |
fi |
| if test -f $(GC)/Makefile ; \ |
|
| then \ |
install-for-debug : |
| (cd $(GC); make clean) ; \ |
if [ "`uname`" = "CYGWIN_NT-5.0" ]; then \ |
| |
ln -f -s ../src/kan96xx/Kan/sm1.exe $(OpenXM_bin)/sm1.exe ; \ |
| |
else \ |
| |
ln -f -s ../src/kan96xx/Kan/sm1 $(OpenXM_bin)/sm1 ; \ |
| fi |
fi |
| |
|
| |
install-doc: install-document |
| |
|
| |
install-document : #alias |
| |
-(cd Doc ; make install-document) |
| |
|
| |
############## |
| |
clean-for-debug : |
| |
/bin/rm -f $(OpenXM_bin)/sm1 |
| |
|
| |
clean : |
| |
/bin/rm -f ./.done_links |
| (cd Kan; make clean) |
(cd Kan; make clean) |
| (cd plugin; make clean) |
(cd plugin; make clean) |
| /bin/rm -f sm1 |
/bin/rm -f sm1 |
|
|
| ### clean also *.a files. |
### clean also *.a files. |
| cleana: distclean |
cleana: distclean |
| |
|
| distclean : |
distclean : clean |
| if test -f $(GMP)/Makefile ; \ |
|
| then \ |
|
| (cd $(GMP) ; make distclean) ; \ |
|
| fi |
|
| if test -f $(GC)/Makefile ; \ |
|
| then \ |
|
| (cd $(GC); make clean; /bin/rm -f *.a) ; \ |
|
| fi |
|
| (cd Kan; make cleana) |
(cd Kan; make cleana) |
| (cd plugin; make clean; /bin/rm -f *.a) |
(cd plugin; make clean; /bin/rm -f *.a) |
| |
/bin/rm -rf gc gmp lib Doc/var.sm1 |
| |
|