X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile;h=f162f5f6539af505bce2b10eabf44fac2fa032b8;hb=1e95f8a388325499564df5f8eb6eb1fd10ca2d42;hp=502c415719bd1147083825a7d00b340d5f710a5c;hpb=140300a38da236f8c88f2a85fd1699d300fa9024;p=sfa.git diff --git a/Makefile b/Makefile index 502c4157..f162f5f6 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ uninstall: python-uninstall tests-uninstall .PHONY: all install clean uninstall -VERSIONTAG=should-be-redefined-by-specfile +VERSIONTAG=0.0-0-should.be-redefined-by-specfile SCMURL=should-be-redefined-by-specfile ########## @@ -87,7 +87,7 @@ force: ########## tags: - find . -type f | egrep -v '/\.git/|/\.svn/|TAGS|\.py[co]$$|\.doc$$|\.html$$|\.pdf$$|~$$|\.png$$|\.svg$$|\.out$$' | xargs etags + find . -type f | egrep -v '/\.git/|/\.svn/|TAGS|\.py[co]$$|\.doc$$|\.html$$|\.pdf$$|~$$|\.png$$|\.svg$$|\.out$$|\.bak$$|\.xml$$' | xargs etags .PHONY: tags signatures: @@ -114,7 +114,8 @@ SSHURL:=root@$(PLC):/ SSHCOMMAND:=ssh root@$(PLC) endif -LOCAL_RSYNC_EXCLUDES := --exclude '*.pyc' +LOCAL_RSYNC_EXCLUDES += --exclude '*.pyc' +LOCAL_RSYNC_EXCLUDES += --exclude '*.png' --exclude '*.svg' --exclude '*.out' RSYNC_EXCLUDES := --exclude .svn --exclude .git --exclude '*~' --exclude TAGS $(LOCAL_RSYNC_EXCLUDES) RSYNC_COND_DRY_RUN := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,) RSYNC := rsync -a -v $(RSYNC_COND_DRY_RUN) --no-owner $(RSYNC_EXCLUDES)