~ubuntu-touch-coreapps-drivers/help-app/trunk

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Daniel Holbach
  • Date: 2015-03-19 17:54:55 UTC
  • mfrom: (111.2.14 1429896)
  • Revision ID: daniel.holbach@canonical.com-20150319175455-sjwdzzy3aqaaiu9u
mergedĀ lp:~dholbach/help-app/1429896

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/make -f
2
 
 
3
 
ignored := $(shell bzr ignored | cut -d' ' -f1)
4
 
 
5
 
clean:
6
 
ifneq ($(strip $(ignored)),)
7
 
        $(foreach fn, $(ignored), $(shell rm -r $(fn);))
8
 
endif
9
 
 
10
 
check: clean
11
 
        make -C edit-here check
12
 
 
13
 
click: html
14
 
        cd app && click build . && mv *.click ..
15
 
 
16
 
html: clean
17
 
        make -C edit-here html
18
 
 
19
 
web: clean
20
 
        make -C edit-here web
21
 
 
22
 
update-pot:
23
 
        cd edit-here && ./generate-pot
24
 
 
25
 
launch:
26
 
        make -C edit-here launch
27
 
 
28
 
.PHONY: click html web update-pot clean check