-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (28 loc) · 997 Bytes
/
Copy pathMakefile
File metadata and controls
37 lines (28 loc) · 997 Bytes
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
36
37
all : recursive
@find . -name '*.html' -print0 | xargs -0 $(MAKE) -s
recursive :
@for makefile in `find . -mindepth 2 -name Makefile` ; do \
dir=`dirname $$makefile` ; \
echo "making $$dir/" ; \
( cd $$dir ; make -s ) ; \
done
presentation.html : presentation.txt docutils.conf
@echo "making $@ from $<"
@python2 ~/projects/docutils/docutils/tools/s52html.py $< $@
handout.html : presentation.txt docutils.conf
@echo "making $@ from $<"
@python2 ~/projects/docutils/docutils/tools/rst2html.py $< $@
resume_David_Goodger.html : resume_David_Goodger.txt resume.css docutils.conf
@echo "making $@ from $<"
@python2 ~/projects/docutils/docutils/tools/rst2html.py $< $@
%.html : %.txt docutils.conf
@echo "making $@ from $<"
@python2 ~/projects/docutils/docutils/tools/rst2html.py $< $@
checkin :
@svn ci -q --force-log -m. Makefile docutils.conf default.css
@svn ci -q --force-log -m.
commit : checkin
install : all
@cd .. ; ./push
updated :
touch ../timestamp