X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile;h=a6965bbef4df310f2bdc2a2b0a5e0b21412cc226;hb=429e5214b5e839964e10d540bea97480fb6fcd74;hp=ea0ad1a178acca972c8c43468ad49bdf577b7af8;hpb=00acbce747c8ea470caf78506b10a1bc30d20431;p=sfa.git diff --git a/Makefile b/Makefile index ea0ad1a1..a6965bbe 100644 --- a/Makefile +++ b/Makefile @@ -1,71 +1,100 @@ # ## (Re)builds Python metafile (__init__.py) and documentation -# # -# Meta +# overwritten by the specfile DESTDIR="/" -init := geni/__init__.py geni/util/__init__.py geni/methods/__init__.py -subdirs := keyconvert #pyOpenSSL-0.9 +########## +all: keyconvert python wsdl -all: $(init) $(subdirs) +install: keyconvert-install python-install wsdl-install -install: all - python setup.py install --root=$(DESTDIR) --record=GENI_INSTALLED_FILES +clean: keyconvert-clean python-clean wsdl-clean -$(subdirs): $(init) +.PHONY: all install clean -$(subdirs): %: - $(MAKE) -C $@ +########## +keyconvert: + $(MAKE) -C keyconvert -clean: - python setup.py clean - cd keyconvert && make clean +keyconvert-install: + $(MAKE) -C keyconvert install + +keyconvert-clean: + $(MAKE) -C keyconvert clean + +.PHONY: keyconvert keyconvert-install keyconvert-clean + +########## +python: -index: $(init) +python-install: + python setup.py install --root=$(DESTDIR) -index-clean: +python-clean: + python setup.py clean rm $(init) -.phony: all install force clean index $(subdirs) +.PHONY: python python-install python-clean +########## +wsdl: + $(MAKE) -C wsdl -geni/__init__.py: - (echo '## Please use make index to update this file' ; echo 'all = """' ; cd geni; ls -1 *.py | grep -v __init__ | sed -e 's,.py$$,,' ; echo '""".split()') > $@ +# propagate DESTDIR from the specfile +wsdl-install: + $(MAKE) -C wsdl install -geni/methods/__init__.py: - (echo '## Please use make index to update this file' ; echo 'all = """' ; cd geni/methods; ls -1 *.py | grep -v __init__ | sed -e 's,.py$$,,' ; echo '""".split()') > $@ +wsdl-clean: + $(MAKE) -C wsdl clean -geni/util/__init__.py: - (echo '## Please use make index to update this file' ; echo 'all = """' ; cd geni/util; ls -1 *.py | grep -v __init__ | sed -e 's,.py$$,,' ; echo '""".split()') > $@ +.PHONY: wsdl wsdl-install wsdl-clean +########## -geni_now := $(sort $(shell fgrep -v '"' geni/__init__.py 2>/dev/null)) -# what should be declared -geni_paths := $(filter-out %/__init__.py, $(wildcard geni/*.py)) -geni_files := $(sort $(notdir $(geni_paths:.py=))) -ifneq ($(geni_now), $(geni_files)) -geni/__init__.py: force -endif +# are the .java files used ? +tags: + find . -type f | egrep -v '/\.svn/|TAGS|\.py[co]$$|\.doc$$|\.html$$|\.pdf$$' | xargs etags +.PHONY: tags -methods_now := $(sort $(shell fgrep -v '"' geni/methods/__init__.py 2>/dev/null)) -# what should be declared -method_paths := $(filter-out %/__init__.py, $(wildcard geni/methods/*.py)) -method_files := $(sort $(notdir $(method_paths:.py=))) -ifneq ($(methods_now), $(methods_files)) -geni/methods/__init__.py: force -endif -util_now := $(sort $(shell fgrep -v '"' geni/util/__init__.py 2>/dev/null)) -# what should be declared -util_paths := $(filter-out %/__init__.py, $(wildcard geni/util/*.py)) -util_files := $(sort $(notdir $(util_paths:.py=))) -ifneq ($(util_now), $(util_files)) -geni/util/__init__.py: force -endif +########## sync +# 2 forms are supported +# (*) if your plc root context has direct ssh access: +# make sync PLC=private.one-lab.org +# (*) otherwise, entering through the root context +# make sync PLCHOST=testbox1.inria.fr GUEST=vplc03.inria.fr -force: +ifdef GUEST +ifdef PLCHOST +SSHURL:=root@$(PLCHOST):/vservers/$(GUEST) +SSHCOMMAND:=ssh root@$(PLCHOST) vserver $(GUEST) +endif +endif +ifdef PLC +SSHURL:=root@$(PLC):/ +SSHCOMMAND:=ssh root@$(PLC) +endif -.PHONY: all install force clean index tags $(subdirs) +LOCAL_RSYNC_EXCLUDES := --exclude '*.pyc' +RSYNC_EXCLUDES := --exclude .svn --exclude CVS --exclude '*~' --exclude TAGS $(LOCAL_RSYNC_EXCLUDES) +RSYNC_COND_DRY_RUN := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,) +RSYNC := rsync -a -v $(RSYNC_COND_DRY_RUN) $(RSYNC_EXCLUDES) + +BINS = ./config/sfa-config-tty ./sfa/plc/sfa-import-plc.py ./sfa/plc/sfa-nuke-plc.py \ + ./sfa/server/sfa-server.py \ + ./sfa/client/sfi.py ./sfa/client/getNodes.py ./sfa/client/getRecord.py \ + ./sfa/client/setRecord.py ./sfa/client/genidump.py + +sync: +ifeq (,$(SSHURL)) + @echo "sync: You must define, either PLC, or PLCHOST & GUEST, on the command line" + @echo " e.g. make sync PLC=private.one-lab.org" + @echo " or make sync PLCHOST=testbox1.inria.fr GUEST=vplc03.inria.fr" + @exit 1 +else + +$(RSYNC) ./sfa/ $(SSHURL)/usr/lib/python2.5/site-packages/sfa/ + +$(RSYNC) $(BINS) $(SSHURL)/usr/bin + $(SSHCOMMAND) exec service sfa restart +endif -# are the .java files used ? -tags: - find . -name '*.py' -o -name '*.sh' -o -name '*.ecore' | grep -v '/\.svn/' | xargs etags +.PHONY: sync +##########