deb pkg ctd
[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)/unfold \
22             --install-scripts=$(DESTDIR)/$(datadir)/unfold \
23             --install-data=$(DESTDIR)/$(datadir)/unfold
24
25 ####################
26 # general stuff
27 DATE=$(shell date -u +"%a, %d %b %Y %T")
28
29 # This is called from the build with the following variables set 
30 # (see build/Makefile and target_debian)
31 # (.) RPMTARBALL
32 # (.) RPMVERSION
33 # (.) RPMRELEASE
34 # (.) RPMNAME
35 DEBVERSION=$(RPMVERSION).$(RPMRELEASE)
36 DEBTARBALL=../$(RPMNAME)_$(DEBVERSION).orig.tar.bz2
37
38 debian: static templates debian/changelog debian.source debian.package
39
40 debian/changelog: debian/changelog.in
41         sed -e "s|@VERSION@|$(DEBVERSION)|" -e "s|@DATE@|$(DATE)|" debian/changelog.in > debian/changelog
42
43 debian.source: force 
44         rsync -a $(RPMTARBALL) $(DEBTARBALL)
45
46 debian.package:
47         debuild -uc -us -b 
48
49 debian.clean:
50         $(MAKE) -f debian/rules clean
51         rm -rf build/ MANIFEST ../*.tar.gz ../*.dsc ../*.build
52         find . -name '*.pyc' -delete
53
54
55 #################### third-party layout is kind of special 
56 # because we have differents versions, and also we 
57 # try to preserve the file structure from upstream
58 # so let's handle this manually
59 THIRD-PARTY-RESOURCES =
60 # ignore variants, use the main symlink third-party/bootstrap
61 THIRD-PARTY-RESOURCES += $(shell ls third-party/bootstrap/*/*)
62 # just the single js as identified with a symlink
63 THIRD-PARTY-RESOURCES += $(shell ls third-party/datatables/js/dataTables.js)
64 THIRD-PARTY-RESOURCES += $(shell ls third-party/datatables/js/dataTables.bootstrap.js)
65 THIRD-PARTY-RESOURCES += $(shell ls third-party/datatables/css/dataTables.bootstrap.css)
66 # likewise
67 THIRD-PARTY-RESOURCES += $(shell ls third-party/jquery/js/jquery.js)
68 THIRD-PARTY-RESOURCES += $(shell ls third-party/jquery/js/jquery.min.js)
69 # for storing the visible status of plugins
70 THIRD-PARTY-RESOURCES += $(shell ls third-party/jquery-html5storage/jquery.html5storage.js)
71 THIRD-PARTY-RESOURCES += $(shell ls third-party/jquery-html5storage/jquery.html5storage.min.js)
72 # creating queries uuids on the fly
73 THIRD-PARTY-RESOURCES += $(shell ls third-party/uuid/Math.uuid.js)
74 # spin comes in plain or min, + the jquery plugin, and our own settings
75 THIRD-PARTY-RESOURCES += $(shell ls third-party/spin/*.js)
76 # used in QueryCode
77 THIRD-PARTY-RESOURCES += $(shell ls third-party/syntaxhighlighter/scripts/shCore.js)
78 THIRD-PARTY-RESOURCES += $(shell ls third-party/syntaxhighlighter/scripts/shAutoloader.js)
79 THIRD-PARTY-RESOURCES += $(shell ls third-party/syntaxhighlighter/scripts/shBrushPython.js)
80 THIRD-PARTY-RESOURCES += $(shell ls third-party/syntaxhighlighter/scripts/shBrushRuby.js)
81 THIRD-PARTY-RESOURCES += $(shell ls third-party/syntaxhighlighter/styles/shCore.css)
82 THIRD-PARTY-RESOURCES += $(shell ls third-party/syntaxhighlighter/styles/shCoreDefault.css)
83 THIRD-PARTY-RESOURCES += $(shell ls third-party/syntaxhighlighter/styles/shThemeDefault.css)
84
85
86 thirdparty-js:
87         @find $(THIRD-PARTY-RESOURCES) -name '*.js'
88 thirdparty-css:
89         @find $(THIRD-PARTY-RESOURCES) -name '*.css'
90 thirdparty-img:
91         @find $(THIRD-PARTY-RESOURCES) -name '*.png' -o -name '*.ico'
92
93 # we might have any of these as templates - e.g. ./unfold/templates/plugin-init.js
94 # so if there's a /templates/ in the path ignore the file
95 local-js: force
96         @find . -type f -name '*.js' | egrep -v '/all-(static|templates)/|/third-party/|/templates/'
97 local-css: force
98         @find . -type f -name '*.css' | egrep -v 'all-(static|templates)/|/third-party/|/templates/'
99 local-img: force
100         @find . -type f -name '*.png' -o -name '*.ico' | egrep -v 'all-(static|templates)/|/third-party/|/templates/'
101
102 list-js: thirdparty-js local-js
103 list-css: thirdparty-css local-css
104 list-img: thirdparty-img local-img
105
106 # having templates in a templates/ subdir is fine most of the time except for plugins
107 plugins-templates: force
108         @find plugins -type f -name '*.html' 
109 local-templates: force
110         @$(foreach tmpl,$(shell find . -name templates),ls -1 $(tmpl)/*;)
111
112 list-templates: plugins-templates local-templates
113
114 #################### manage static contents (extract from all the modules into the single all-static location)
115 static run-static static-run: force
116         mkdir -p ./all-static/js all-static/css all-static/img
117         ln -sf $(foreach x,$(shell $(MAKE-SILENT) list-js),../../$(x)) ./all-static/js
118         ln -sf $(foreach x,$(shell $(MAKE-SILENT) list-css),../../$(x)) ./all-static/css
119         ln -sf $(foreach x,$(shell $(MAKE-SILENT) list-img),../../$(x)) ./all-static/img
120
121 clean-static static-clean: force
122         rm -rf ./all-static
123
124 all-static: clean-static run-static
125
126 #################### manage templates for the plugin area
127 templates run-templates templates-run: force
128         mkdir -p all-templates
129         ln -sf $(foreach x,$(shell $(MAKE-SILENT) list-templates),../$(x)) ./all-templates
130
131 clean-templates templates-clean: force
132         rm -rf ./all-templates
133
134 all-templates: clean-templates run-templates
135
136 ####################
137 list-all list-resources: list-templates list-js list-css list-img
138
139 #################### compute emacs tags
140 # list files under git but exclude third-party stuff like bootstrap and jquery
141 myfiles: force
142         @git ls-files | egrep -v 'insert(_|-)above|third-party/|play/'
143
144 # in general it's right to rely on the contents as reported by git
145 tags: force
146         $(MAKE-SILENT) myfiles | xargs etags
147
148 # however sometimes we have stuff not yet added, so in this case
149 ftags: force
150         find . -type f | fgrep -v '/.git/' | xargs etags
151
152 #################### sync : push current code on a (devel) box running myslice
153 SSHURL:=root@$(MYSLICEBOX):/
154 SSHCOMMAND:=ssh root@$(MYSLICEBOX)
155
156 ### rsync options
157 # the config file should probably not be overridden ??
158 # --exclude settings.py 
159 LOCAL_RSYNC_EXCLUDES    := --exclude '*.pyc' --exclude config.py --exclude all-static --exclude all-templates --exclude '*.sqlite3'  --exclude play/ 
160 # usual excludes
161 RSYNC_EXCLUDES          := --exclude .git --exclude '*~' --exclude TAGS --exclude .DS_Store $(LOCAL_RSYNC_EXCLUDES) 
162 # make -n will propagate as rsync -n 
163 RSYNC_COND_DRY_RUN      := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,)
164 # putting it together
165 RSYNC                   := rsync -a -v $(RSYNC_COND_DRY_RUN) $(RSYNC_EXCLUDES)
166
167 ##### convenience for development only, push code on a specific test box
168 # xxx until we come up with a packaging this is going to be a wild guess
169 # on debian04 I have stuff in /usr/share/myslice and a symlink in /root/myslice
170 #INSTALLED=/usr/share/myslice
171 INSTALLED=/root/myslice
172
173 sync:
174 ifeq (,$(MYSLICEBOX))
175         @echo "you need to set MYSLICEBOX, like in e.g."
176         @echo "  $(MAKE) MYSLICEBOX=debian04.pl.sophia.inria.fr "$@""
177         @exit 1
178 else
179         +$(RSYNC) ./ $(SSHURL)/$(INSTALLED)/
180 endif
181
182 # xxx likewise until we run this under apache it's probably hard to restart from here
183 restart:
184 ifeq (,$(MYSLICEBOX))
185         @echo "you need to set MYSLICEBOX, like in e.g."
186         @echo "  $(MAKE) MYSLICEBOX=debian04.pl.sophia.inria.fr "$@""
187         @exit 1
188 else
189         @echo "$@" target not yet implemented - for an apache based depl it would read ...; exit; @$(SSHCOMMAND) /etc/init.d/apache2 restart
190 endif