[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.5 and 1.6

version 1.5, 2000/12/25 06:19:10 version 1.6, 2001/08/12 07:44:34
Line 1 
Line 1 
 ## $OpenXM: OpenXM/src/kan96xx/Doc/Makefile,v 1.4 2000/01/19 06:41:02 takayama Exp $  ## $OpenXM: OpenXM/src/kan96xx/Doc/Makefile,v 1.5 2000/12/25 06:19:10 takayama Exp $
 ########## Documents  ########## Documents
 TOPDIR=../../../../OpenXM  TOPDIR=../../../../OpenXM
 OpenXM_ROOT=${TOPDIR}  OpenXM_ROOT=${TOPDIR}
 OpenXM_doc=$(OpenXM_ROOT)/doc  OpenXM_doc=$(OpenXM_ROOT)/doc
 DVIPS=dvips -f  DVIPS=dvips -f
 CC=gcc  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 27  onlinehelp.dvi : onlinehelp.tex
Line 28  onlinehelp.dvi : onlinehelp.tex
 ole : ole.c  ole : ole.c
         ${CC} -o 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 : 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
   
 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
   
 ########### kan/library  ########### kan/library
 CC=gcc  CC=gcc

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

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