-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (24 loc) · 696 Bytes
/
Makefile
File metadata and controls
32 lines (24 loc) · 696 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
# Makefile for humla lectures
.PHONY: pdf
help:
@echo "make <target>"
@echo "http starts the http server listening on tcp/9000."
@echo "clean cleans all temporary directories."
@echo "pdf creates a pdf document for every lecture file."
@echo "toc creates a table of contents in JSON for all lecture files."
@echo "gcache fetches all google drawings from all lectures and stores them in the cache."
@echo "all cleans everything and creates all pdf files and toc."
@echo ""
http:
humla/bin/http-server.sh
gcache:
humla/bin/fetchall-drawings.sh
clean:
rm -fr cache
rm -fr pdf
rm -f toc.json
pdf:
humla/bin/generate-pdfs.sh
toc:
humla/bin/generate-toc.sh
all: clean pdf toc