3 MAKE-SILENT = $(MAKE) --no-print-directory
5 ### first purpose, build and install from the specfile
16 build: static templates
20 python setup.py install \
21 --install-purelib=$(DESTDIR)/$(datadir)/unfold \
22 --install-scripts=$(DESTDIR)/$(datadir)/unfold \
23 --install-data=$(DESTDIR)/$(datadir)/unfold
27 DATE=$(shell date -u +"%a, %d %b %Y %T")
29 # This is called from the build with the following variables set
30 # (see build/Makefile and target_debian)
35 DEBVERSION=$(RPMVERSION).$(RPMRELEASE)
36 DEBTARBALL=../$(RPMNAME)_$(DEBVERSION).orig.tar.bz2
38 debian: static templates debian/changelog debian.source debian.package
40 debian/changelog: debian/changelog.in
41 sed -e "s|@VERSION@|$(DEBVERSION)|" -e "s|@DATE@|$(DATE)|" debian/changelog.in > debian/changelog
44 rsync -a $(RPMTARBALL) $(DEBTARBALL)
50 $(MAKE) -f debian/rules clean
51 rm -rf build/ MANIFEST ../*.tar.gz ../*.dsc ../*.build
52 find . -name '*.pyc' -delete
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)
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)
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)
85 THIRD-PARTY-RESOURCES += $(shell ls third-party/smartwizard-1636c86/js/jquery.smartWizard-2.0.js)
86 #THIRD-PARTY-RESOURCES += $(shell ls third-party/smartwizard-1636c86/js/jquery.smartWizard-2.0.min.js)
87 THIRD-PARTY-RESOURCES += $(shell ls third-party/smartwizard-1636c86/styles/smart_wizard.css)
89 THIRD-PARTY-RESOURCES += $(shell ls third-party/jquery-notify/jquery.notify.js)
90 THIRD-PARTY-RESOURCES += $(shell ls third-party/jquery-notify/jquery.notify.min.js)
91 THIRD-PARTY-RESOURCES += $(shell ls third-party/jquery-notify/ui.notify.css)
93 THIRD-PARTY-RESOURCES += $(shell ls third-party/codemirror-3.15/lib/codemirror.js)
94 THIRD-PARTY-RESOURCES += $(shell ls third-party/codemirror-3.15/lib/codemirror.css)
95 THIRD-PARTY-RESOURCES += $(shell ls third-party/codemirror-3.15/mode/sql/sql.js)
97 THIRD-PARTY-RESOURCES += $(shell ls third-party/mustache/mustache.js)
101 @find $(THIRD-PARTY-RESOURCES) -name '*.js'
103 @find $(THIRD-PARTY-RESOURCES) -name '*.css'
105 @find $(THIRD-PARTY-RESOURCES) -name '*.png' -o -name '*.ico'
107 # we might have any of these as templates - e.g. ./unfold/templates/plugin-init.js
108 # so if there's a /templates/ in the path ignore the file
110 @find . -type f -name '*.js' | egrep -v '/all-(static|templates)/|/third-party/|/templates/'
112 @find . -type f -name '*.css' | egrep -v 'all-(static|templates)/|/third-party/|/templates/'
114 @find . -type f -name '*.png' -o -name '*.ico' | egrep -v 'all-(static|templates)/|/third-party/|/templates/'
116 list-js: thirdparty-js local-js
117 list-css: thirdparty-css local-css
118 list-img: thirdparty-img local-img
120 # having templates in a templates/ subdir is fine most of the time except for plugins
121 plugins-templates: force
122 @find plugins -type f -name '*.html'
123 local-templates: force
124 @$(foreach tmpl,$(shell find . -name templates),ls -1 $(tmpl)/*;)
126 list-templates: plugins-templates local-templates
128 #################### manage static contents (extract from all the modules into the single all-static location)
129 static run-static static-run: force
130 mkdir -p ./all-static/js all-static/css all-static/img
131 ln -sf $(foreach x,$(shell $(MAKE-SILENT) list-js),../../$(x)) ./all-static/js
132 ln -sf $(foreach x,$(shell $(MAKE-SILENT) list-css),../../$(x)) ./all-static/css
133 ln -sf $(foreach x,$(shell $(MAKE-SILENT) list-img),../../$(x)) ./all-static/img
135 clean-static static-clean: force
138 all-static: clean-static run-static
140 #################### manage templates for the plugin area
141 templates run-templates templates-run: force
142 mkdir -p all-templates
143 ln -sf $(foreach x,$(shell $(MAKE-SILENT) list-templates),../$(x)) ./all-templates
145 clean-templates templates-clean: force
146 rm -rf ./all-templates
148 all-templates: clean-templates run-templates
151 list-all list-resources: list-templates list-js list-css list-img
153 #################### compute emacs tags
154 # list files under git but exclude third-party stuff like bootstrap and jquery
156 @git ls-files | egrep -v 'insert(_|-)above|third-party/|play/'
158 # in general it's right to rely on the contents as reported by git
160 $(MAKE-SILENT) myfiles | xargs etags
162 # however sometimes we have stuff not yet added, so in this case
164 find . -type f | fgrep -v '/.git/' | xargs etags
166 #################### sync : push current code on a (devel) box running myslice
167 SSHURL:=root@$(MYSLICEBOX):/
168 SSHCOMMAND:=ssh root@$(MYSLICEBOX)
171 # the config file should probably not be overridden ??
172 # --exclude settings.py
173 LOCAL_RSYNC_EXCLUDES := --exclude '*.pyc' --exclude config.py --exclude all-static --exclude all-templates --exclude '*.sqlite3' --exclude play/
175 RSYNC_EXCLUDES := --exclude .git --exclude '*~' --exclude TAGS --exclude .DS_Store $(LOCAL_RSYNC_EXCLUDES)
176 # make -n will propagate as rsync -n
177 RSYNC_COND_DRY_RUN := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,)
178 # putting it together
179 RSYNC := rsync -a -v $(RSYNC_COND_DRY_RUN) $(RSYNC_EXCLUDES)
181 ##### convenience for development only, push code on a specific test box
182 # xxx until we come up with a packaging this is going to be a wild guess
183 # on debian04 I have stuff in /usr/share/myslice and a symlink in /root/myslice
184 #INSTALLED=/usr/share/myslice
185 INSTALLED=/root/myslice
188 ifeq (,$(MYSLICEBOX))
189 @echo "you need to set MYSLICEBOX, like in e.g."
190 @echo " $(MAKE) MYSLICEBOX=debian04.pl.sophia.inria.fr "$@""
193 +$(RSYNC) ./ $(SSHURL)/$(INSTALLED)/
196 # xxx likewise until we run this under apache it's probably hard to restart from here
198 ifeq (,$(MYSLICEBOX))
199 @echo "you need to set MYSLICEBOX, like in e.g."
200 @echo " $(MAKE) MYSLICEBOX=debian04.pl.sophia.inria.fr "$@""
203 @echo "$@" target not yet implemented - for an apache based depl it would read ...; exit; @$(SSHCOMMAND) /etc/init.d/apache2 restart