80fcc4f1f9e44f650c201dcf4b18c22a284ebfd7
[myslice.git] / Makefile
1 all: tags
2
3 force:
4
5 # in general it's right to rely on the contents as reported by git
6 tags: force
7         git ls-files | xargs etags
8
9 # however sometimes we have stuff not yet added, so in this case
10 ftags: force
11         find . -type f | fgrep -v '/.git/' | xargs etags
12
13 static: force
14         ./manage.py collectstatic --noinput 
15
16 clean-static: force
17         rm -rf ./all-static/