updater's query now has its own uuid
[myslice.git] / Makefile
1 SHELL = /bin/bash
2
3 MAKE-SILENT = $(MAKE) --no-print-directory
4
5 ### first purpose, build and install from the specfile
6 all: build
7
8 force:
9
10 DESTDIR := /
11 datadir := /usr/share
12 bindir := /usr/bin
13
14 PWD := $(shell pwd)
15
16 build: static templates
17         python setup.py build
18
19 install: 
20         python setup.py install \
21             --install-purelib=$(DESTDIR)/$(datadir)/myslice \
22             --install-scripts=$(DESTDIR)/$(datadir)/myslice \
23             --install-data=$(DESTDIR)/$(datadir)/myslice
24
25
26 #################### third-party layout is kind of special 
27 # because we have differents versions, and also we 
28 # try to preserve the file structure from upstream
29 # so let's handle this manually
30 THIRD-PARTY-RESOURCES =
31 # ignore variants, use the main symlink third-party/bootstrap
32 THIRD-PARTY-RESOURCES += $(shell ls third-party/bootstrap/*/*)
33 # just the single js as identified with a symlink
34 THIRD-PARTY-RESOURCES += $(shell ls third-party/datatables/js/dataTables.js)
35 THIRD-PARTY-RESOURCES += $(shell ls third-party/datatables/js/dataTables.bootstrap.js)
36 THIRD-PARTY-RESOURCES += $(shell ls third-party/datatables/css/dataTables.bootstrap.css)
37 # likewise
38 THIRD-PARTY-RESOURCES += $(shell ls third-party/jquery/js/jquery.js)
39 THIRD-PARTY-RESOURCES += $(shell ls third-party/jquery/js/jquery.min.js)
40 # for storing the visible status of plugins
41 THIRD-PARTY-RESOURCES += $(shell ls third-party/jquery-html5storage/jquery.html5storage.js)
42 THIRD-PARTY-RESOURCES += $(shell ls third-party/jquery-html5storage/jquery.html5storage.min.js)
43 # creating queries uuids on the fly
44 THIRD-PARTY-RESOURCES += $(shell ls third-party/uuid/Math.uuid.js)
45 # spin comes in plain or min, + the jquery plugin, and our own settings
46 THIRD-PARTY-RESOURCES += $(shell ls third-party/spin/*.js)
47 # used in QueryCode
48 THIRD-PARTY-RESOURCES += $(shell ls third-party/syntaxhighlighter/scripts/shCore.js)
49 THIRD-PARTY-RESOURCES += $(shell ls third-party/syntaxhighlighter/scripts/shAutoloader.js)
50 THIRD-PARTY-RESOURCES += $(shell ls third-party/syntaxhighlighter/scripts/shBrushPython.js)
51 THIRD-PARTY-RESOURCES += $(shell ls third-party/syntaxhighlighter/scripts/shBrushRuby.js)
52 THIRD-PARTY-RESOURCES += $(shell ls third-party/syntaxhighlighter/styles/shCore.css)
53 THIRD-PARTY-RESOURCES += $(shell ls third-party/syntaxhighlighter/styles/shCoreDefault.css)
54 THIRD-PARTY-RESOURCES += $(shell ls third-party/syntaxhighlighter/styles/shThemeDefault.css)
55
56
57 thirdparty-js:
58         @find $(THIRD-PARTY-RESOURCES) -name '*.js'
59 thirdparty-css:
60         @find $(THIRD-PARTY-RESOURCES) -name '*.css'
61 thirdparty-img:
62         @find $(THIRD-PARTY-RESOURCES) -name '*.png' -o -name '*.ico'
63
64 # we might have any of these as templates - e.g. ./unfold/templates/plugin-init.js
65 # so if there's a /templates/ in the path ignore the file
66 local-js: force
67         @find . -type f -name '*.js' | egrep -v '/all-(static|templates)/|/third-party/|/templates/'
68 local-css: force
69         @find . -type f -name '*.css' | egrep -v 'all-(static|templates)/|/third-party/|/templates/'
70 local-img: force
71         @find . -type f -name '*.png' -o -name '*.ico' | egrep -v 'all-(static|templates)/|/third-party/|/templates/'
72
73 list-js: thirdparty-js local-js
74 list-css: thirdparty-css local-css
75 list-img: thirdparty-img local-img
76
77 # having templates in a templates/ subdir is fine most of the time except for plugins
78 plugins-templates: force
79         @find plugins -type f -name '*.html' 
80 local-templates: force
81         @$(foreach tmpl,$(shell find . -name templates),ls -1 $(tmpl)/*;)
82
83 list-templates: plugins-templates local-templates
84
85 #################### manage static contents (extract from all the modules into the single all-static location)
86 static run-static static-run: force
87         mkdir -p ./all-static/js all-static/css all-static/img
88         ln -sf $(foreach x,$(shell $(MAKE-SILENT) list-js),../../$(x)) ./all-static/js
89         ln -sf $(foreach x,$(shell $(MAKE-SILENT) list-css),../../$(x)) ./all-static/css
90         ln -sf $(foreach x,$(shell $(MAKE-SILENT) list-img),../../$(x)) ./all-static/img
91
92 clean-static static-clean: force
93         rm -rf ./all-static
94
95 all-static: clean-static run-static
96
97 #################### manage templates for the plugin area
98 templates run-templates templates-run: force
99         mkdir -p all-templates
100         ln -sf $(foreach x,$(shell $(MAKE-SILENT) list-templates),../$(x)) ./all-templates
101
102 clean-templates templates-clean: force
103         rm -rf ./all-templates
104
105 all-templates: clean-templates run-templates
106
107 ####################
108 list-all list-resources: list-templates list-js list-css list-img
109
110 #################### compute emacs tags
111 # list files under git but exclude third-party stuff like bootstrap and jquery
112 myfiles: force
113         @git ls-files | egrep -v 'insert(_|-)above|third-party/|play/'
114
115 # in general it's right to rely on the contents as reported by git
116 tags: force
117         $(MAKE-SILENT) myfiles | xargs etags
118
119 # however sometimes we have stuff not yet added, so in this case
120 ftags: force
121         find . -type f | fgrep -v '/.git/' | xargs etags
122
123 #################### sync : push current code on a (devel) box running myslice
124 SSHURL:=root@$(MYSLICEBOX):/
125 SSHCOMMAND:=ssh root@$(MYSLICEBOX)
126
127 ### rsync options
128 # the config file should probably not be overridden ??
129 # --exclude settings.py 
130 LOCAL_RSYNC_EXCLUDES    := --exclude '*.pyc' --exclude config.py --exclude all-static --exclude all-templates --exclude '*.sqlite3'  --exclude play/ 
131 # usual excludes
132 RSYNC_EXCLUDES          := --exclude .git --exclude '*~' --exclude TAGS --exclude .DS_Store $(LOCAL_RSYNC_EXCLUDES) 
133 # make -n will propagate as rsync -n 
134 RSYNC_COND_DRY_RUN      := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,)
135 # putting it together
136 RSYNC                   := rsync -a -v $(RSYNC_COND_DRY_RUN) $(RSYNC_EXCLUDES)
137
138 # xxx until we come up with a packaging this is going to be a wild guess
139 # on debian04 I have stuff in /usr/share/myslice and a symlink in /root/myslice
140 #INSTALLED=/usr/share/myslice
141 INSTALLED=/root/myslice
142
143 sync:
144 ifeq (,$(MYSLICEBOX))
145         @echo "you need to set MYSLICEBOX, like in e.g."
146         @echo "  $(MAKE) MYSLICEBOX=debian04.pl.sophia.inria.fr "$@""
147         @exit 1
148 else
149         +$(RSYNC) ./ $(SSHURL)/$(INSTALLED)/
150 endif
151
152 # xxx likewise until we run this under apache it's probably hard to restart from here
153 restart:
154 ifeq (,$(MYSLICEBOX))
155         @echo "you need to set MYSLICEBOX, like in e.g."
156         @echo "  $(MAKE) MYSLICEBOX=debian04.pl.sophia.inria.fr "$@""
157         @exit 1
158 else
159         @echo "$@" target not yet implemented - for an apache based depl it would read ...; exit; @$(SSHCOMMAND) /etc/init.d/apache2 restart
160 endif