X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile;h=4228020f9faf62b783f28ffe66d8626406d1e838;hb=b6de9285a970eccb9658a0078c49f76fb11af7cd;hp=ef3e497d3ef735f67bb0a9b4a0d6a3aca7c7737c;hpb=c6884b76347be620a7b2aed427291a2e49b53850;p=sfa.git diff --git a/Makefile b/Makefile index ef3e497d..4228020f 100644 --- a/Makefile +++ b/Makefile @@ -96,7 +96,7 @@ force: ########## # a lot of stuff in the working dir is just noise scan: - @find . -type f | egrep -v '^\./\.|/\.git/|/\.svn/|TAGS|AA-|~$$|egg-info|\.(py[co]|doc|html|pdf|png|svg|out|bak|xml|dg)$$' + @find . -type f | egrep -v '^\./\.|/\.git/|/\.svn/|TAGS|AA-|~$$|egg-info|\.(py[co]|doc|html|pdf|png|svg|out|bak|dg)$$' tags: $(MAKE) scan | xargs etags @@ -165,3 +165,13 @@ clientsync: .PHONY: sync fastsync clientsync ########## +CLIENTLIBFILES= \ +sfa/examples/miniclient.py \ +sfa/__init__.py \ +sfa/client/{sfaserverproxy,sfaclientlib,__init__}.py \ +sfa/trust/{certificate,__init__}.py \ +sfa/util/{sfalogging,faults,genicode,enumeration,__init__}.py + +clientlibsync: + @[ -d "$(CLIENTLIBTARGET)" ] || { echo "You need to set the make variable CLIENTLIBTARGET"; exit 1; } + rsync -av --relative $(CLIENTLIBFILES) $(CLIENTLIBTARGET)