Scheduler: adding/removing resources enforce warnings and recount number of unconfigu...
[myslice.git] / Makefile
1 SHELL = /bin/bash
2
3 MAKE-SILENT = $(MAKE) --no-print-directory
4
5 all: static templates
6
7 # clean up and recompute
8 redo: clean-oldies redo-static redo-templates 
9
10 clean-oldies:
11         rm -rf all-static all-templates django-static 
12
13 force:
14
15 DESTDIR := /
16 datadir := /usr/share
17 bindir := /usr/bin
18
19 PWD := $(shell pwd)
20
21
22 build: static templates force
23         python setup.py build
24
25 install: 
26         python setup.py install \
27             --install-purelib=$(DESTDIR)/$(datadir)/unfold \
28             --install-scripts=$(DESTDIR)/$(datadir)/unfold \
29             --install-data=$(DESTDIR)/$(datadir)/unfold
30
31 #################### third-party layout is managed as part of collectstatic
32 static: force
33         ./manage.py collectstatic --noinput
34
35 clean-static:
36         rm -rf static/
37
38 redo-static: clean-static static
39
40 ####################
41 # general stuff
42 DATE=$(shell date -u +"%a, %d %b %Y %T")
43
44 # This is called from the build with the following variables set 
45 # (see build/Makefile and target_debian)
46 # (.) RPMTARBALL
47 # (.) RPMVERSION
48 # (.) RPMRELEASE
49 # (.) RPMNAME
50 DEBVERSION=$(RPMVERSION).$(RPMRELEASE)
51 DEBTARBALL=../$(RPMNAME)_$(DEBVERSION).orig.tar.bz2
52
53 debian: static templates debian/changelog debian.source debian.package
54
55 debian/changelog: debian/changelog.in
56         sed -e "s|@VERSION@|$(DEBVERSION)|" -e "s|@DATE@|$(DATE)|" debian/changelog.in > debian/changelog
57
58 debian.source: force 
59         rsync -a $(RPMTARBALL) $(DEBTARBALL)
60
61 debian.package:
62         debuild --set-envvar PREFIX=/usr -uc -us -b
63
64 debian.clean:
65         $(MAKE) -f debian/rules clean
66         rm -rf build/ MANIFEST ../*.tar.gz ../*.dsc ../*.build
67         find . -name '*.pyc' -delete
68
69
70 # having templates in a templates/ subdir is fine most of the time except for plugins
71 plugins-templates: force
72         @find plugins -type f -name '*.html' 
73 local-templates: force
74         @$(foreach tmpl,$(shell find . -name templates | grep -v '^\./templates$$'),find $(tmpl) -maxdepth 2 -type f -name *.html;)
75 local-templates2: force
76         @$(foreach tmpl,$(shell find . -name templates | grep -v '^\./templates$$'),ls -1 $(tmpl)/*;)
77
78
79 list-templates: plugins-templates local-templates
80
81 #################### manage templates for the plugin area
82 templates: force
83         @mkdir -p templates
84         ln -sf $(foreach x,$(shell $(MAKE-SILENT) list-templates),"../$(x)") ./templates
85
86 clean-templates templates-clean: force
87         rm -rf ./templates
88
89 redo-templates: clean-templates templates
90
91 ####################
92 ### list-all list-resources: list-templates list-js list-css list-img
93
94 #################### compute emacs tags
95 # list files under git but exclude third-party stuff like bootstrap and jquery
96 myfiles: force
97         @git ls-files | egrep -v 'insert(_|-)above|third-party/|to-be-integrated/'
98
99 # in general it's right to rely on the contents as reported by git
100 tags: force
101         $(MAKE-SILENT) myfiles | xargs etags
102
103 # however sometimes we have stuff not yet added, so in this case
104 ftags: force
105         find . -type f | fgrep -v '/.git/' | xargs etags
106
107 ########################################
108 ### devel-oriented
109 ########################################
110
111 #################### sync : push current code on a box running myslice
112 # this for now targets deployments based on the debian packaging
113 SSHUSER    ?= root
114 SSHURL     := $(SSHUSER)@$(MYSLICEBOX):
115 SSHCOMMAND := ssh $(SSHUSER)@$(MYSLICEBOX)
116
117 ### rsync options
118 # the config file should probably not be overridden ??
119 # --exclude settings.py 
120 LOCAL_RSYNC_EXCLUDES    := --exclude '*.pyc'
121 LOCAL_RSYNC_EXCLUDES    += --exclude '*.sqlite3' --exclude myslice.ini
122 LOCAL_RSYNC_EXCLUDES    += --exclude static --exclude templates --exclude build
123 LOCAL_RSYNC_EXCLUDES    += --exclude to-be-integrated --exclude third-party 
124 # usual excludes
125 RSYNC_EXCLUDES          := --exclude .git --exclude '*~' --exclude TAGS --exclude .DS_Store $(LOCAL_RSYNC_EXCLUDES) 
126 # make -n will propagate as rsync -n 
127 RSYNC_COND_DRY_RUN      := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,)
128 # putting it together
129 RSYNC                   := rsync -a -v $(RSYNC_COND_DRY_RUN) $(RSYNC_EXCLUDES)
130
131 #################### minimal convenience for pushing work-in-progress in an apache-based depl.
132 # xxx until we come up with a packaging this is going to be a wild guess
133 # on debian04 I have stuff in /usr/share/myslice and a symlink in /root/myslice
134 INSTALLED_MAIN          =/usr/share/pyshared
135 # this is for a debian box
136 INSTALLED_APACHE        =/etc/apache2/sites-available/
137
138 sync: sync-main sync-apache
139
140 sync-main:
141 ifeq (,$(MYSLICEBOX))
142         @echo "you need to set MYSLICEBOX, like in e.g."
143         @echo "  $(MAKE) MYSLICEBOX=debian04.pl.sophia.inria.fr "$@""
144         @exit 1
145 else
146         +$(RSYNC) ./ $(SSHURL)/$(INSTALLED_MAIN)/
147 endif
148
149 sync-apache:
150 ifeq (,$(MYSLICEBOX))
151         @echo "you need to set MYSLICEBOX, like in e.g."
152         @echo "  $(MAKE) MYSLICEBOX=debian04.pl.sophia.inria.fr "$@""
153         @exit 1
154 else
155         +$(RSYNC) ./apache/unfold.conf $(SSHURL)/$(INSTALLED_APACHE)/
156         +$(RSYNC) ./apache/unfold-init-ssl.sh $(SSHURL)/$(bindir)/
157 endif
158
159 restart:
160 ifeq (,$(MYSLICEBOX))
161         @echo "you need to set MYSLICEBOX, like in e.g."
162         @echo "  $(MAKE) MYSLICEBOX=debian04.pl.sophia.inria.fr "$@""
163         @exit 1
164 else
165         +$(SSHCOMMAND) apachectl restart
166 endif
167
168 #SSHUSER=tparment
169 #MYSLICEBOX=srv-diana.inria.fr
170 sync-devel:
171 ifeq (,$(MYSLICEBOX))
172         @echo "you need to set MYSLICEBOX, like in e.g."
173         @echo "  $(MAKE) MYSLICEBOX=srv-diana.inria.fr "$@""
174         @exit 1
175 else
176         +$(RSYNC) --relative $$(git ls-files) $(SSHURL)myslice/
177 endif