X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile;h=a1bd00a1c538713b7df59bdafbb5e9ef53b357bd;hb=refs%2Fheads%2Ftrunk%4014639;hp=5fddce6f7c5e6ebeec66503b52c8aa540226287f;hpb=06ae08c6669e2b380e81ea99398981eabbae2277;p=sfa.git diff --git a/Makefile b/Makefile index 5fddce6f..a1bd00a1 100644 --- a/Makefile +++ b/Makefile @@ -4,73 +4,51 @@ # overwritten by the specfile DESTDIR="/" -init := geni/__init__.py geni/util/__init__.py geni/methods/__init__.py -subdirs := keyconvert #pyOpenSSL-0.9 +########## +all: python wsdl -all: install +install: python-install wsdl-install xmlbuilder-install -install: $(init) $(subdirs) install-python +clean: python-clean wsdl-clean -install-python: - python setup.py install --root=$(DESTDIR) --record=GENI_INSTALLED_FILES +uninstall: python-uninstall -$(subdirs): $(init) +.PHONY: all install clean -$(subdirs): %: - $(MAKE) -C $@ +########## +python: -clean: +xmlbuilder-install: + cd xmlbuilder-0.9 && python setup.py install --root=$(DESTDIR) && cd - + +python-install: + python setup.py install --root=$(DESTDIR) + chmod 444 $(DESTDIR)/etc/sfa/default_config.xml + +python-clean: python setup.py clean - for i in $(subdirs); do make -C $$i clean ; done + rm $(init) -index: $(init) +.PHONY: python python-install python-clean xmlbuilder-install +########## +wsdl: + $(MAKE) -C wsdl -index-clean: - rm $(init) +# propagate DESTDIR from the specfile +wsdl-install: + $(MAKE) -C wsdl install -.phony: all install install-python force clean index $(subdirs) +wsdl-clean: + $(MAKE) -C wsdl clean -force: +.PHONY: wsdl wsdl-install wsdl-clean +########## # are the .java files used ? tags: - find . -name '*.py' -o -name '*.sh' -o -name '*.ecore' | grep -v '/\.svn/' | xargs etags - - - -########## indexes -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()') > $@ - -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()') > $@ + find . -type f | egrep -v '/\.svn/|TAGS|\.py[co]$$|\.doc$$|\.html$$|\.pdf$$' | xargs etags +.PHONY: tags -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()') > $@ - -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 - -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 @@ -95,6 +73,11 @@ RSYNC_EXCLUDES := --exclude .svn --exclude CVS --exclude '*~' --exclude TAGS $( 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 ./config/gen-sfa-cm-config.py \ + ./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/sfadump.py + sync: ifeq (,$(SSHURL)) @echo "sync: You must define, either PLC, or PLCHOST & GUEST, on the command line" @@ -102,7 +85,10 @@ ifeq (,$(SSHURL)) @echo " or make sync PLCHOST=testbox1.inria.fr GUEST=vplc03.inria.fr" @exit 1 else - +$(RSYNC) ./geni/ $(SSHURL)/usr/lib/python2.5/site-packages/geni/ - +$(RSYNC) geni-config-tty $(SSHURL)/usr/bin + +$(RSYNC) ./sfa/ $(SSHURL)/usr/lib/python2.5/site-packages/sfa/ + +$(RSYNC) $(BINS) $(SSHURL)/usr/bin + $(SSHCOMMAND) exec service sfa restart endif +.PHONY: sync +##########