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

Diff for /OpenXM/src/kan96xx/Doc/Attic/Makefile between version 1.3 and 1.8

version 1.3, 2000/01/17 13:02:14 version 1.8, 2003/09/07 08:58:03
Line 1 
Line 1 
 ## $OpenXM: OpenXM/src/kan96xx/Doc/Makefile,v 1.2 2000/01/15 22:45:32 takayama Exp $  ## $OpenXM: OpenXM/src/kan96xx/Doc/Makefile,v 1.7 2002/04/07 07:18:50 takayama Exp $
 ########## Documents  ########## Documents
 OpenXM_ROOT=../../../../OpenXM  OpenXM_HOME=../../..
 OpenXM_doc=$(OpenXM_ROOT)/doc  OpenXM_doc=$(OpenXM_HOME)/doc
   OpenXM_lib=${OpenXM_HOME}/lib
 DVIPS=dvips -f  DVIPS=dvips -f
   CC=gcc
   LATEX2HTML=latex2html
   
 all : ttt.tex onlinehelp.tex  all : ttt.tex onlinehelp.tex
         echo "The document kan/example is in the file ttt.tex."          echo "The document kan/example is in the file ttt.tex."
Line 16  ttt.tex : ex.tex ole cv0.sm1 cv2.sm1 gbelim.sm1 gblex.
Line 19  ttt.tex : ex.tex ole cv0.sm1 cv2.sm1 gbelim.sm1 gblex.
         ./ole <ex.tex >ttt.tex          ./ole <ex.tex >ttt.tex
   
 onlinehelp.tex :  onlinehelp.tex :
         -./printOnlineHelp          -./printOnlineHelp ${OpenXM_lib}
   
 onlinehelp.dvi : onlinehelp.tex  onlinehelp.dvi : onlinehelp.tex
         -latex onlinehelp          -latex onlinehelp
         -latex onlinehelp          -latex onlinehelp
   
 ole : ole.c  ole : ole.c
           ${CC} -o ole ole.c
   
   make-html-document : onlinehelp.tex ttt.tex
           -${LATEX2HTML} onlinehelp
           -${LATEX2HTML} ttt
   
 ###  ###
 install-document : onlinehelp.dvi ttt.dvi clean-OpenXM-doc  install-document :
           @if [ ! -f ./.done_install-document ] ; \
           then \
                   make install-document2 ; \
                   touch ./.done_install-document ; \
           else \
                   echo "NOTE: Install-document is already done. Remove .done_install-document for a new install-document." ; \
           fi
   
   install-document2 : onlinehelp.dvi ttt.dvi clean-OpenXM-doc make-html-document
         mkdir $(OpenXM_doc)/kan96xx          mkdir $(OpenXM_doc)/kan96xx
         touch $(OpenXM_doc)/kan96xx/DO_NOT_EDIT_THIS_DIRECTORY._ALL_FILES_ARE_AUTOMATICDALLY_GENERATED.          touch $(OpenXM_doc)/kan96xx/DO_NOT_EDIT_THIS_DIRECTORY._ALL_FILES_ARE_AUTOMATICDALLY_GENERATED.
         -cp ttt.tex $(OpenXM_doc)/kan96xx/intro.tex          -cp ttt.tex $(OpenXM_doc)/kan96xx/intro.tex
         -cp onlinehelp.tex $(OpenXM_doc)/kan96xx/onlinehelp.tex          -cp onlinehelp.tex $(OpenXM_doc)/kan96xx/onlinehelp.tex
         -$(DVIPS)  ttt >$(OpenXM_doc)/kan96xx/intro.ps          -$(DVIPS)  ttt >$(OpenXM_doc)/kan96xx/intro.ps
         -$(DVIPS) onlinehelp >$(OpenXM_doc)/kan96xx/onlinehelp.ps          -$(DVIPS) onlinehelp >$(OpenXM_doc)/kan96xx/onlinehelp.ps
           -cp -r onlinehelp $(OpenXM_doc)/kan96xx
           -cp -r ttt $(OpenXM_doc)/kan96xx
   
 clean-OpenXM-doc :  clean-OpenXM-doc :
         -/bin/rm -rf $(OpenXM_doc)/kan96xx          -/bin/rm -rf $(OpenXM_doc)/kan96xx
   
 ########## cleaning  ########## cleaning
 clean:  clean:
         -/bin/rm ttt.* ole *.dvi *.aux *.log *~ kanlib1 onlinehelp.tex a.out bin/ox bin/oxlog bin/ox_sm1          -/bin/rm -rf ttt.* ole *.dvi *.aux *.log *~ kanlib1 onlinehelp.tex a.out bin/ox bin/oxlog bin/ox_sm1 onlinehelp ttt ./.done_install-document
   
 clean-document:  clean-document:
         -/bin/rm ttt.* ole *.dvi *.aux *.log *~ kanlib1 onlinehelp.tex a.out          -/bin/rm -rf ttt.* ole *.dvi *.aux *.log *~ kanlib1 onlinehelp.tex a.out onlinehelp ttt ./.done_install-document
   
 ########### kan/library  ########### kan/library
 CC=gcc  CC=gcc
Line 55  GC = ../gc/gc.a
Line 74  GC = ../gc/gc.a
 kanlib1 : kanlib1.c  kanlib1 : kanlib1.c
         (cd $(KAN_HOME); make kanlib.a)          (cd $(KAN_HOME); make kanlib.a)
         $(CC) -I$(GMP_HOME) -I$(KAN_HOME) -o kanlib1 kanlib1.c $(KAN_HOME)/kanlib.a $(LIBGMP) $(GC)          $(CC) -I$(GMP_HOME) -I$(KAN_HOME) -o kanlib1 kanlib1.c $(KAN_HOME)/kanlib.a $(LIBGMP) $(GC)
   

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.8

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