Annotation of OpenXM/doc/OpenXM-specs/Makefile, Revision 1.6
1.6 ! noro 1: #$OpenXM: OpenXM/doc/OpenXM-specs/Makefile,v 1.5 2000/01/24 07:36:35 noro Exp $
1.1 noro 2: all : doc
3:
4: OXWEAVE=../../src/kxx/oxweave
1.2 noro 5: OXWEAVEFLAG=--recursive --plain
1.6 ! noro 6: SRC= OpenXM.tex cmo-basic0.tex cmo-basic1.tex\
! 7: cmo-register.tex communication-model.tex control.tex\
! 8: error.tex formal-expression.tex howtowrite.tex\
! 9: implementation.tex introduction.tex library.tex\
! 10: ox-localdata.tex project.tex redefine.tex\
! 11: stackmachine.tex start-session.tex string-expression.tex
! 12:
! 13: doc: OpenXM-eg.dvi OpenXM-jp.dvi
! 14:
! 15: OpenXM-eg.dvi: $(OXWEAVE) $(SRC)
1.1 noro 16: -rm -rf tmpEG
17: -mkdir tmpEG
18: -for i in *.tex; do $(OXWEAVE) $(OXWEAVEFLAG) C eg < $$i >tmpEG/$$i; done
1.6 ! noro 19: (cd tmpEG; ln -s ../reset.eps .; latex OpenXM; latex OpenXM)
! 20: -mv tmpEG/OpenXM.dvi OpenXM-eg.dvi
! 21: touch OpenXM-eg.dvi
! 22:
! 23: OpenXM-jp.dvi: $(OXWEAVE) $(SRC)
1.1 noro 24: -rm -rf tmpJP
25: -mkdir tmpJP
26: -for i in *.tex; do $(OXWEAVE) $(OXWEAVEFLAG) C jp < $$i >tmpJP/$$i; done
1.6 ! noro 27: -(cd tmpJP; ln -s ../reset.eps .; platex OpenXM; platex OpenXM)
! 28: -mv tmpJP/OpenXM.dvi OpenXM-jp.dvi
! 29: touch OpenXM-jp.dvi
1.1 noro 30:
31: $(OXWEAVE) : $(OXWEAVE).c
32: (cd ../../src/kxx ; make oxweave)
33:
34: clean :
35: /bin/rm -rf tmpEG tmpJP
36:
37:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>