blob: fcc92c4b3050fc33dc53249b4e5199e930b6be9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
--- ./doc/Makefile.orig Tue Sep 17 14:55:33 2002
+++ ./doc/Makefile Tue Aug 5 16:55:55 2003
@@ -6,7 +6,7 @@
include ../../huskymak.cfg
endif
-all: html info dvi
+all: html info
ifdef HTMLDIR
html: fidoconfig_toc.html
@@ -67,20 +67,16 @@
-$(RM) $(RMOPT) fidoconfig.doc
-$(RM) $(RMOPT) fidoconfig.info*
-install: info html dvi
+install: info html
@echo .
ifdef INFODIR
-$(MKDIR) $(MKDIROPT) $(INFODIR)
- $(INSTALL) fidoconfig.info $(INFODIR)
+ $(INSTALL) $(IMOPT) fidoconfig.info $(INFODIR)
-install-info --info-dir=$(INFODIR) $(INFODIR)$(DIRSEP)fidoconfig.info
endif
ifdef HTMLDIR
-$(MKDIR) $(MKDIROPT) $(HTMLDIR)
- $(INSTALL) fidoconfig*html $(HTMLDIR)
-endif
-ifdef DVIDIR
- -$(MKDIR) $(MKDIROPT) $(DVIDIR)
- $(INSTALL) fidoconfig.dvi $(DVIDIR)
+ $(INSTALL) $(IMOPT) fidoconfig*html $(HTMLDIR)
endif
uninstall:
|