renamed
[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/