X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile;h=6c651bfca5a47ae453f7dfaafe42c6b4066fab70;hb=32844661b7993381f1836e8e287165a1ce367bbc;hp=85b5d09aaf56f1b11e12920f22af734155a02cde;hpb=b709866ba93d98c32127ff4deae5b783e271e5b3;p=unfold.git diff --git a/Makefile b/Makefile index 85b5d09a..6c651bfc 100644 --- a/Makefile +++ b/Makefile @@ -32,24 +32,30 @@ THIRD-PARTY-RESOURCES += $(shell ls third-party/bootstrap/*/*) THIRD-PARTY-RESOURCES += $(shell ls third-party/datatables/js/dataTables.js) # likewise THIRD-PARTY-RESOURCES += $(shell ls third-party/jquery/js/jquery.js) +# used in hazelnut +THIRD-PARTY-RESOURCES += $(shell ls third-party/jquery-ui/themes/base/jquery-ui.css) # spin comes in plain or min, + the jquery plugin, and our own settings THIRD-PARTY-RESOURCES += $(shell ls third-party/spin/*.js) +# used in QueryCode +THIRD-PARTY-RESOURCES += $(shell ls third-party/beautyofcode/scripts/sh{Core,Autoloader,BrushPython,BrushRuby}.js) +THIRD-PARTY-RESOURCES += $(shell ls third-party/beautyofcode/styles/sh{Core,CoreDefault,ThemeDefault}.css) + thirdparty-js: @find $(THIRD-PARTY-RESOURCES) -name '*.js' thirdparty-css: @find $(THIRD-PARTY-RESOURCES) -name '*.css' thirdparty-img: - @find $(THIRD-PARTY-RESOURCES) -name '*.png' + @find $(THIRD-PARTY-RESOURCES) -name '*.png' -o -name '*.ico' -# we might have any of these as templates - e.g. ./unfold/templates/plugin-setenv.js +# we might have any of these as templates - e.g. ./unfold/templates/plugin-init.js # so if there's a /templates/ in the path ignore the file local-js: force @find . -type f -name '*.js' | egrep -v '/all-(static|templates)/|/third-party/|/templates/' local-css: force @find . -type f -name '*.css' | egrep -v 'all-(static|templates)/|/third-party/|/templates/' local-img: force - @find . -type f -name '*.png' | egrep -v 'all-(static|templates)/|/third-party/|/templates/' + @find . -type f -name '*.png' -o -name '*.ico' | egrep -v 'all-(static|templates)/|/third-party/|/templates/' list-js: thirdparty-js local-js list-css: thirdparty-css local-css @@ -108,7 +114,7 @@ SSHCOMMAND:=ssh root@$(MYSLICEBOX) ### rsync options # the config file should probably not be overridden ?? # --exclude settings.py -LOCAL_RSYNC_EXCLUDES := --exclude '*.pyc' --exclude config.py --exclude all-static --exclude all-templates --exclude '*.sqlite3' +LOCAL_RSYNC_EXCLUDES := --exclude '*.pyc' --exclude config.py --exclude all-static --exclude all-templates --exclude '*.sqlite3' --exclude play/ # usual excludes RSYNC_EXCLUDES := --exclude .git --exclude '*~' --exclude TAGS --exclude .DS_Store $(LOCAL_RSYNC_EXCLUDES) # make -n will propagate as rsync -n