[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / src / kan96xx / Doc

Annotation of OpenXM/src/kan96xx/Doc/Makefile, Revision 1.1

1.1     ! maekawa     1: ########## Documents
        !             2: all : ttt.tex onlinehelp.tex
        !             3:        echo "The document kan/example is in the file ttt.tex."
        !             4:        echo "onlinehelp.tex is a collection of online help."
        !             5: ttt.dvi : ttt.tex
        !             6:        latex ttt ; latex ttt
        !             7:
        !             8: ttt.tex : ex.tex ole cv0.sm1 cv2.sm1 gbelim.sm1 gblex.sm1 gbrev.sm1 gbrevsim.sm1
        !             9:        /bin/rm -f ttt.tex
        !            10:        ./ole <ex.tex >ttt.tex
        !            11:
        !            12: onlinehelp.tex :
        !            13:        ./printOnlineHelp
        !            14:        latex onlinehelp ; latex onlinehelp
        !            15:
        !            16: ole : ole.c
        !            17:
        !            18: ########### kan/library
        !            19: CC = gcc
        !            20: KAN_HOME = ../Kan
        !            21: GMP_HOME = ../gmp
        !            22: LIBGMP = $(GMP_HOME)/libgmp.a
        !            23: ## This line is for buggy linux-gmp.
        !            24: #LIBGMP = $(GMP_HOME)/libgmp.a $(GMP_HOME)/mpn/libmpn.a
        !            25: GC = ../gc/gc.a
        !            26: #GC = /fuji/taka/noro/gc.org.a
        !            27: kanlib1 : kanlib1.c
        !            28:        (cd $(KAN_HOME); make kanlib.a)
        !            29:        $(CC) -I$(GMP_HOME) -I$(KAN_HOME) -o kanlib1 kanlib1.c $(KAN_HOME)/kanlib.a $(LIBGMP) $(GC)
        !            30:
        !            31: ########## cleaning
        !            32: clean:
        !            33:        /bin/rm ttt.* ole *.dvi *.aux *.log *~ kanlib1 onlinehelp.tex a.out bin/ox bin/oxlog bin/ox_sm1
        !            34:
        !            35: clean2:
        !            36:        /bin/rm ttt.* ole *.dvi *.aux *.log *~ kanlib1 onlinehelp.tex a.out

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