X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile;h=dde9fac305543daeea208b7f661c1aaaeb74f791;hb=050db13e0c64e7a63646a8f45da74f734923dd9f;hp=fe0820fcae1ee06fb7916f23b5564d8458f9ce0b;hpb=1f890ea0c653d62c2127921d43cf6ef233d7968b;p=unfold.git diff --git a/Makefile b/Makefile index fe0820fc..dde9fac3 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,64 @@ +### +all: + @echo no default target + +force: + +#################### compute emacs tags +# list files under git but exclude third-party stuff like bootstrap and jquery +myfiles: force + @git ls-files | egrep -v 'insert_above/|/bootstrap/|/jquery/|datatables/' + # in general it's right to rely on the contents as reported by git -tags: - git ls-files | xargs etags +tags: force + $(MAKE) myfiles | xargs etags # however sometimes we have stuff not yet added, so in this case -ftags: +ftags: force find . -type f | fgrep -v '/.git/' | xargs etags -static: +#################### manage static contents (extract from all the modules into the single all-static location) +static: force ./manage.py collectstatic --noinput + +clean-static: force + rm -rf ./all-static/ + +allst: clean-static static + +#################### sync : push current code on a (devel) box running myslice +SSHURL:=root@$(MYSLICEBOX):/ +SSHCOMMAND:=ssh root@$(MYSLICEBOX) + +### rsync options +# the config file should probably not be overridden +LOCAL_RSYNC_EXCLUDES := --exclude '*.pyc' --exclude settings.py --exclude devel --exclude DataTables-1.9.4 +# usual excludes +RSYNC_EXCLUDES := --exclude .git --exclude '*~' --exclude TAGS --exclude .DS_Store $(LOCAL_RSYNC_EXCLUDES) +# make -n will propagate as rsync -n +RSYNC_COND_DRY_RUN := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,) +# putting it together +RSYNC := rsync -a -v $(RSYNC_COND_DRY_RUN) $(RSYNC_EXCLUDES) + +# xxx until we come up with a packaging this is going to be a wild guess +#INSTALLED=/usr/share/myslice +INSTALLED=/root/myslice + +sync: +ifeq (,$(MYSLICEBOX)) + @echo "you need to set MYSLICEBOX, like in e.g." + @echo " $(MAKE) MYSLICEBOX=debian04.pl.sophia.inria.fr "$@"" + @exit 1 +else + +$(RSYNC) ./ $(SSHURL)/$(INSTALLED)/ +endif + +# xxx likewise until we run this under apache it's probably hard to restart from here +restart: +ifeq (,$(MYSLICEBOX)) + @echo "you need to set MYSLICEBOX, like in e.g." + @echo " $(MAKE) MYSLICEBOX=debian04.pl.sophia.inria.fr "$@"" + @exit 1 +else + @echo "$@" target not yet implemented - for an apache based depl it would read ...; exit; @$(SSHCOMMAND) /etc/init.d/apache2 restart +endif