comparison doc/misc/html/examples/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 include $(BUILDTOP)/config.mk
2 include $(TOP)/mk/installdirs.mk
3
4 FILES=\
5 dsl.html \
6 examples.html \
7 fc.html \
8 ffcalc.html \
9 ffcex.html \
10 hw.html \
11 rcalc.html \
12 sbb-doc.html
13
14 all rules depend clean distclean agfiles agclean:;
15
16 install:
17 @$(TOP)/mk/mkinstalldirs.sh "$(DOCDIR)/html/examples"
18 @echo ' [CP] $(FILES)'
19 @cp `(cd $(SRCDIR) && ls *.html) | sed 's,^,$(SRCDIR)/,'` \
20 "$(DOCDIR)/html/examples/"
21 @(cd "$(DOCDIR)/html/examples/" && chmod 644 *.html)
22
23
24 .PHONY: all rules depend install clean distclean agfiles agclean