Mercurial > ~dholland > hg > ag > index.cgi
comparison doc/misc/DEFS.mk @ 0:13d2b8934445
Import AnaGram (near-)release tree into Mercurial.
author | David A. Holland |
---|---|
date | Sat, 22 Dec 2007 17:52:45 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:13d2b8934445 |
---|---|
1 HELP2HTML=$(BUILDTOP)/help2html/mhh6 | |
2 HELPSRC=$(TOP)/anagram/guisupport/helpdata.src | |
3 | |
4 include $(BUILDTOP)/config.mk | |
5 include $(TOP)/mk/installdirs.mk | |
6 | |
7 FILES=\ | |
8 $(SRCDIR)/readme.html \ | |
9 $(SRCDIR)/whatsnew.html \ | |
10 $(SRCDIR)/license.html \ | |
11 $(SRCDIR)/buildnotes.html \ | |
12 help.html | |
13 | |
14 all: help.html | |
15 | |
16 help.html: $(HELPSRC) $(HELP2HTML) | |
17 @echo ' [HELP2HTML]' | |
18 @$(HELP2HTML) $(HELPSRC) help.html | |
19 @rm -f intermed.html | |
20 | |
21 clean distclean: | |
22 @echo ' [RM] help.html' | |
23 @rm -f help.html intermed.html | |
24 | |
25 rules depend agfiles agclean:; | |
26 | |
27 install: | |
28 @$(TOP)/mk/mkinstalldirs.sh "$(DOCDIR)" | |
29 @echo ' [CP] $(FILES)' | |
30 @cp $(FILES) "$(DOCDIR)/" | |
31 @(cd "$(DOCDIR)/" && chmod 644 *.html) | |
32 | |
33 | |
34 .PHONY: all rules depend install clean distclean agfiles agcleanhtml |