minor tweaks
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Sat, 21 Sep 2013 07:26:52 +0000 (09:26 +0200)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Sat, 21 Sep 2013 07:26:52 +0000 (09:26 +0200)
Makefile

index 4993548..2e8fdec 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,14 +2,13 @@ SHELL = /bin/bash
 
 MAKE-SILENT = $(MAKE) --no-print-directory
 
-### first purpose, build and install from setup.py
-all: build
-
-force:
+all: static templates
 
 # clean up and recompute
 redo: redo-static redo-templates
 
+force:
+
 DESTDIR := /
 datadir := /usr/share
 bindir := /usr/bin
@@ -26,10 +25,14 @@ install:
            --install-scripts=$(DESTDIR)/$(datadir)/unfold \
            --install-data=$(DESTDIR)/$(datadir)/unfold
 
-redo-static static: force
-       rm -rf static/
+static: force
        ./manage.py collectstatic --noinput
 
+clean-static:
+       rm -rf static/
+
+redo-static: clean-static static
+
 ####################
 # general stuff
 DATE=$(shell date -u +"%a, %d %b %Y %T")
@@ -131,7 +134,7 @@ debian.clean:
 plugins-templates: force
        @find plugins -type f -name '*.html' 
 local-templates: force
-       @$(foreach tmpl,$(shell find . -name templates),ls -1 $(tmpl)/*;)
+       @$(foreach tmpl,$(shell find . -name templates | grep -v '^\./templates$$'),ls -1 $(tmpl)/*;)
 
 list-templates: plugins-templates local-templates