Check-in Number:
|
206 | |
Date: |
2000-Dec-12 14:28:49 (local)
2000-Dec-12 13:28:49 (UTC) |
User: | simons |
Branch: | |
Comment: |
Renamed GNUmakefile to Makefile; there's nothing in this makefile
that's specific to GNU make. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/petidomo/docs/Makefile -> 1.1
*** /dev/null Sat Nov 23 05:30:27 2024
--- - Sat Nov 23 05:30:39 2024
***************
*** 0 ****
--- 1,29 ----
+ #
+ # Petidomo User Manual
+ #
+ # $Header: /v/ossp/cvs/ossp-pkg/petidomo/docs/Makefile,v 1.1 2000/12/13 13:28:49 simons Exp $
+ #
+
+ all: petidomo.ps
+
+ %.dvi : %.tex
+ latex \\nonstopmode\\input $<; \
+ while egrep 'Rerun to' $*.log; do \
+ latex \\nonstopmode\\input $<; \
+ done
+
+ %.ps : %.dvi
+ dvips $< -o $@
+
+ %.eps: %.fig
+ fig2dev -L ps $< $@
+
+ petidomo.dvi: ml-principle1.eps ml-principle2.eps directory-struct.eps
+
+ ml-principle1.eps: ml-principle1.fig
+ ml-principle2.eps: ml-principle2.fig
+ directory-struct.eps: directory-struct.fig
+
+ clean distclean realclean:
+ rm -f petidomo.aux petidomo.dvi petidomo.idx petidomo.log petidomo.ps petidomo.toc
+ rm -f ml-principle1.eps ml-principle2.eps directory-struct.eps
|
|