oops
[sfa.git] / Makefile
1 #
2 ## (Re)builds Python metafile (__init__.py) and documentation
3
4 # overwritten by the specfile
5 DESTDIR="/"
6
7 ##########
8 all: keyconvert python
9
10 install: keyconvert-install python-install
11
12 clean: keyconvert-clean python-clean
13
14 .PHONY: all install clean 
15
16 ##########
17 keyconvert:
18         $(MAKE) -C keyconvert
19
20 keyconvert-install:
21         $(MAKE) -C keyconvert install
22
23 keyconvert-clean:
24         $(MAKE) -C keyconvert clean
25
26 .PHONY: keyconvert keyconvert-install keyconvert-clean 
27
28 ##########
29 python: $(init)
30
31 python-install:
32         python setup.py install --root=$(DESTDIR) --record=GENI_INSTALLED_FILES
33
34 python-clean:
35         python setup.py clean
36         rm $(init)
37
38 .PHONY: python python-install python-clean
39 ##########
40
41 # are the .java files used ?
42 tags:   
43         find . -name '*.py' -o -name '*.sh' -o -name '*.ecore'  | grep -v '/\.svn/' | xargs etags
44 .PHONY: tags
45
46
47 ########## indexes
48 init := geni/__init__.py geni/util/__init__.py geni/methods/__init__.py 
49
50 force:
51 .PHONY: force 
52
53 geni/__init__.py:
54         (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()') > $@
55
56 geni/methods/__init__.py:
57         (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()') > $@
58
59 geni/util/__init__.py:
60         (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()') > $@
61
62 geni_now := $(sort $(shell fgrep -v '"' geni/__init__.py 2>/dev/null))
63 # what should be declared
64 geni_paths := $(filter-out %/__init__.py, $(wildcard geni/*.py))
65 geni_files := $(sort $(notdir $(geni_paths:.py=)))
66 ifneq ($(geni_now), $(geni_files))
67 geni/__init__.py: force
68 endif
69
70 methods_now := $(sort $(shell fgrep -v '"' geni/methods/__init__.py 2>/dev/null))
71 # what should be declared
72 method_paths := $(filter-out %/__init__.py, $(wildcard geni/methods/*.py))
73 method_files := $(sort $(notdir $(method_paths:.py=)))
74 ifneq ($(methods_now), $(methods_files))
75 geni/methods/__init__.py: force
76 endif
77
78 util_now := $(sort $(shell fgrep -v '"' geni/util/__init__.py 2>/dev/null))
79 # what should be declared
80 util_paths := $(filter-out %/__init__.py, $(wildcard geni/util/*.py))
81 util_files := $(sort $(notdir $(util_paths:.py=)))
82 ifneq ($(util_now), $(util_files))
83 geni/util/__init__.py: force
84 endif
85
86 ########## sync
87 # 2 forms are supported
88 # (*) if your plc root context has direct ssh access:
89 # make sync PLC=private.one-lab.org
90 # (*) otherwise, entering through the root context
91 # make sync PLCHOST=testbox1.inria.fr GUEST=vplc03.inria.fr
92
93 ifdef GUEST
94 ifdef PLCHOST
95 SSHURL:=root@$(PLCHOST):/vservers/$(GUEST)
96 SSHCOMMAND:=ssh root@$(PLCHOST) vserver $(GUEST)
97 endif
98 endif
99 ifdef PLC
100 SSHURL:=root@$(PLC):/
101 SSHCOMMAND:=ssh root@$(PLC)
102 endif
103
104 LOCAL_RSYNC_EXCLUDES    := --exclude '*.pyc' 
105 RSYNC_EXCLUDES          := --exclude .svn --exclude CVS --exclude '*~' --exclude TAGS $(LOCAL_RSYNC_EXCLUDES)
106 RSYNC_COND_DRY_RUN      := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,)
107 RSYNC                   := rsync -a -v $(RSYNC_COND_DRY_RUN) $(RSYNC_EXCLUDES)
108
109 sync:
110 ifeq (,$(SSHURL))
111         @echo "sync: You must define, either PLC, or PLCHOST & GUEST, on the command line"
112         @echo "  e.g. make sync PLC=private.one-lab.org"
113         @echo "  or   make sync PLCHOST=testbox1.inria.fr GUEST=vplc03.inria.fr"
114         @exit 1
115 else
116         +$(RSYNC) ./geni/ $(SSHURL)/usr/lib/python2.5/site-packages/geni/
117         +$(RSYNC) geni-config-tty $(SSHURL)/usr/bin
118 endif
119
120 .PHONY: sync
121 ##########