-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (19 loc) · 764 Bytes
/
Makefile
File metadata and controls
25 lines (19 loc) · 764 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
.PHONY: help clean html
help:
@echo "Please use \`make <target>' where <target> is one of"
@echo " html to make standalone HTML files"
html:
@echo "=== Generate 'en' documentation ================="
@cd en; $(MAKE) $(MFLAGS) html; cd ..
@echo "=== Generate 'de' documentation ================="
@cd de; $(MAKE) $(MFLAGS) html; cd ..
fasthtml:
@echo "=== Generate 'en' documentation ================="
@cd en; $(MAKE) $(MFLAGS) fasthtml; cd ..
@echo "=== Generate 'de' documentation ================="
@cd de; $(MAKE) $(MFLAGS) fasthtml; cd ..
clean:
@echo "=== Clean 'en' documentation ================="
@cd en; $(MAKE) $(MFLAGS) clean; cd ..
@echo "=== Clean 'de' documentation ================="
@cd de; $(MAKE) $(MFLAGS) clean; cd ..