Browse Source

* export a TMP=/tmp for dvips which don't like '.' in the directory

peter 27 years ago
parent
commit
9a3e867679
1 changed files with 23 additions and 13 deletions
  1. 23 13
      docs/Makefile

+ 23 - 13
docs/Makefile

@@ -19,7 +19,7 @@
 
 
 # Where do you want the html files to be put ?
 # Where do you want the html files to be put ?
 ifndef DOCINSTALLDIR
 ifndef DOCINSTALLDIR
-DOCINSTALLDIR=/usr/doc/fpc-0.99.5
+DOCINSTALLDIR=/usr/doc/fpc-0.99.8
 endif 
 endif 
 
 
 #
 #
@@ -69,6 +69,9 @@ ifndef MAKEINDEX
 MAKEINDEX=makeindex
 MAKEINDEX=makeindex
 endif
 endif
 
 
+# tmpdir
+export TMP=/tmp
+
 #
 #
 
 
 #######################################################################
 #######################################################################
@@ -150,25 +153,27 @@ help:
 clean:
 clean:
 	-rm -rf $(HTML)
 	-rm -rf $(HTML)
 	-rm -f *.aux *.log *.dvi *.ps *.toc *.i* *.lot *.pdf *.txt *.chk
 	-rm -f *.aux *.log *.dvi *.ps *.toc *.i* *.lot *.pdf *.txt *.chk
-	-$(MAKE) -C refex clean
-	-$(MAKE) -C linuxex clean
 	-$(MAKE) -C crtex clean
 	-$(MAKE) -C crtex clean
 	-$(MAKE) -C dosex clean
 	-$(MAKE) -C dosex clean
+	-$(MAKE) -C go32ex clean
+	-$(MAKE) -C linuxex clean
+	-$(MAKE) -C mouseex clean
 	-$(MAKE) -C optex clean
 	-$(MAKE) -C optex clean
 	-$(MAKE) -C printex clean
 	-$(MAKE) -C printex clean
-	-$(MAKE) -C stringex clean
 	-$(MAKE) -C sockex clean
 	-$(MAKE) -C sockex clean
-	-$(MAKE) -C mouseex clean
+	-$(MAKE) -C stringex clean
+	-$(MAKE) -C refex clean
 
 
 unitex.chk:
 unitex.chk:
 	$(MAKE) -C crtex tex
 	$(MAKE) -C crtex tex
-	$(MAKE) -C linuxex tex
 	$(MAKE) -C dosex tex
 	$(MAKE) -C dosex tex
+	$(MAKE) -C go32ex tex
+	$(MAKE) -C linuxex tex
 	$(MAKE) -C optex tex
 	$(MAKE) -C optex tex
+	$(MAKE) -C mouseex tex
 	$(MAKE) -C printex tex
 	$(MAKE) -C printex tex
 	$(MAKE) -C stringex tex
 	$(MAKE) -C stringex tex
 	$(MAKE) -C sockex tex
 	$(MAKE) -C sockex tex
-	$(MAKE) -C mouseex tex
 	touch unitex.chk
 	touch unitex.chk
 
 
 refex.chk:
 refex.chk:
@@ -203,7 +208,7 @@ user.chk: user.tex
 	rm -f user/labels.pl user/internals.pl user/.*.pag user/.*.dir
 	rm -f user/labels.pl user/internals.pl user/.*.pag user/.*.dir
 	rm -f user/images.* user/*.log
 	rm -f user/images.* user/*.log
 	touch user.chk
 	touch user.chk
-	
+
 units: units.chk
 units: units.chk
 
 
 units.chk: units.tex unitex.chk
 units.chk: units.tex unitex.chk
@@ -240,13 +245,13 @@ htm: html
 	makehtm `find . -name '*.html'`
 	makehtm `find . -name '*.html'`
 	zip -q fpcdoc `find . -name '*.htm'` `find . -name '*.gif'`
 	zip -q fpcdoc `find . -name '*.htm'` `find . -name '*.gif'`
 	rm `find -name '*.htm'`
 	rm `find -name '*.htm'`
-	
+
 htmdist: htm
 htmdist: htm
 
 
 #####################################################################
 #####################################################################
 # Installation
 # Installation
 #####################################################################
 #####################################################################
-	
+
 install:
 install:
 	install -d -m 755 $(DOCINSTALLDIR)
 	install -d -m 755 $(DOCINSTALLDIR)
 	cp fpctoc.html $(DOCINSTALLDIR)
 	cp fpctoc.html $(DOCINSTALLDIR)
@@ -281,7 +286,7 @@ txtdist: txt
 	zip fpcdoctxt $(TXT)
 	zip fpcdoctxt $(TXT)
 
 
 alldist: dvidist psdist txtdist pdfdist htmldist htmdist
 alldist: dvidist psdist txtdist pdfdist htmldist htmdist
-		
+
 distclean: clean
 distclean: clean
 	-rm -f *.tar.gz *.zip
 	-rm -f *.tar.gz *.zip
 
 
@@ -290,8 +295,6 @@ distclean: clean
 #####################################################################
 #####################################################################
 
 
 examples:
 examples:
-	$(MAKE) -C crtex
-	$(MAKE) -C dosex
 	$(MAKE) -C crtex
 	$(MAKE) -C crtex
 	$(MAKE) -C dosex
 	$(MAKE) -C dosex
 	$(MAKE) -C optex
 	$(MAKE) -C optex
@@ -307,3 +310,10 @@ dosexamples: examples
 linuxexamples: examples
 linuxexamples: examples
 	$(MAKE) -C linuxex
 	$(MAKE) -C linuxex
 	$(MAKE) -C sockex
 	$(MAKE) -C sockex
+
+#
+# $Log$
+# Revision 1.10  1998-09-11 11:01:10  peter
+#   * export a TMP=/tmp for dvips which don't like '.' in the directory
+#
+#