summaryrefslogtreecommitdiff
path: root/GNUmakefile
blob: 664d5d97d785a25aa5771d4a4f3e415401dc0561 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all:
	mkdir -p tracwiki markdown
	tools/extract.py

fetch:
	rsync -aP --delete bikeshed.cryptech.is:/home/trac/db/trac.db bikeshed.cryptech.is:/home/trac/files/attachments .

clean:
	rm -rf tracwiki markdown

distclean: clean
	rm -rf trac.db attachments

.PHONY: all clean fetch distclean