Annotation of OpenXM/doc/OpenXM-specs/Makefile, Revision 1.1.1.1
1.1 noro 1: #$OpenXM$
2: all : doc
3:
4: OXWEAVE=../../src/kxx/oxweave
5: OXWEAVEFLAG=--recursive
6: doc: $(OXWEAVE) OpenXM.tex
7: -rm -rf tmpEG
8: -mkdir tmpEG
9: -for i in *.tex; do $(OXWEAVE) $(OXWEAVEFLAG) C eg < $$i >tmpEG/$$i; done
10: -rm -rf tmpJP
11: -mkdir tmpJP
12: -for i in *.tex; do $(OXWEAVE) $(OXWEAVEFLAG) C jp < $$i >tmpJP/$$i; done
13:
14: $(OXWEAVE) : $(OXWEAVE).c
15: (cd ../../src/kxx ; make oxweave)
16:
17: clean :
18: /bin/rm -rf tmpEG tmpJP
19:
20:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>