X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile;h=a29b5b3a44980d20fe6280c4346c9b2d8e521e68;hb=a39d44883f3424d04134e4105873e88336b00795;hp=5565aae58138e6cbb0362e8855bed592560212d0;hpb=9ba2e14457deace50fe90d710173e57bc6348579;p=unfold.git diff --git a/Makefile b/Makefile index 5565aae5..a29b5b3a 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ force: #################### compute emacs tags # list files under git but exclude third-party stuff like bootstrap and jquery myfiles: force - @git ls-files | egrep -v 'insert_above/|/bootstrap/|/jquery/|datatables/' + @git ls-files | egrep -v 'insert(_|-)above|static/bootstrap|/jquery/|datatables/' # in general it's right to rely on the contents as reported by git tags: force @@ -23,9 +23,11 @@ list-js: force @find . -type f -name '*.js' | grep -v '/all-static/' list-css: force @find . -type f -name '*.css' | grep -v '/all-static/' -list-img: +list-img: force @find . -type f -name '*.png' | grep -v '/all-static/' +list-all list-resources: list-html list-js list-css list-img + #################### manage static contents (extract from all the modules into the single all-static location) static: force ./manage.py collectstatic --noinput @@ -42,7 +44,7 @@ SSHCOMMAND:=ssh root@$(MYSLICEBOX) ### rsync options # the config file should probably not be overridden ?? # --exclude settings.py -LOCAL_RSYNC_EXCLUDES := --exclude '*.pyc' --exclude devel --exclude DataTables-1.9.4 +LOCAL_RSYNC_EXCLUDES := --exclude '*.pyc' --exclude devel --exclude DataTables-1.9.4 --exclude all-static --exclude '*.sqlite3' # usual excludes RSYNC_EXCLUDES := --exclude .git --exclude '*~' --exclude TAGS --exclude .DS_Store $(LOCAL_RSYNC_EXCLUDES) # make -n will propagate as rsync -n