~dholbach/help-app/1428676

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/make -f

ignored := $(shell bzr ignored | cut -d' ' -f1)

clean:
ifneq ($(strip $(ignored)),)
	$(foreach fn, $(ignored), $(shell rm -r $(fn);))
endif

click: html
	cd app && click build . && mv *.click ..

html: clean
	make -C edit-here html

web:
	make -C edit-here web

update-pot:
	cd edit-here && ./generate-pot

.PHONY: click html web update-pot clean