rebuild index
[plcapi.git] / Makefile
index e7bc72d..ab65c0f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@
 #
 
 # Metafiles
-init := PLC/__init__.py PLC/Methods/__init__.py
+init := PLC/__init__.py PLC/Methods/__init__.py PLC/Legacy/__init__.py
 
 # python-pycurl and python-psycopg2 avail. from fedora 5
 # we used to ship our own version of psycopg2 and pycurl, for fedora4
@@ -51,8 +51,8 @@ index-clean:
        rm $(init)
 
 #################### regenerate indexes - not used by the build, as both files are svn added - please update as appropriate
-# All .py files in PLC/
 
+########## PLC/
 # the current content of __init__.py
 PLC_now := $(sort $(shell fgrep -v '"' PLC/__init__.py 2>/dev/null))
 # what should be declared
@@ -65,7 +65,7 @@ endif
 PLC/__init__.py: 
        (echo 'all = """' ; cd PLC; ls -1 *.py | grep -v __init__ | sed -e 's,.py$$,,' ; echo '""".split()') > $@
 
-
+########## Methods/
 # the current content of __init__.py
 METHODS_now := $(sort $(shell fgrep -v '"' PLC/Methods/__init__.py 2>/dev/null))
 # what should be declared
@@ -78,6 +78,23 @@ endif
 PLC/Methods/__init__.py: 
        (echo 'methods = """' ; cd PLC/Methods; ls -1 *.py system/*.py | grep -v __init__ | sed -e 's,.py$$,,' -e 's,system/,system.,' ; echo '""".split()') > $@
 
+########## Legacy/
+# the current content of __init__.py
+LEGACY_now := $(sort $(shell fgrep -v '"' PLC/Legacy/__init__.py 2>/dev/null))
+# what should be declared
+LEGACY_paths := $(filter-out %/__init__.py, $(wildcard PLC/Legacy/*.py))
+LEGACY_files := $(sort $(notdir $(LEGACY_paths:.py=)))
+
+ifneq ($(LEGACY_now),$(LEGACY_files))
+PLC/Legacy/__init__.py: force
+endif
+PLC/Legacy/__init__.py: 
+       (echo '# each module to define in "methods" the set of methods that it defines' ;\
+        echo '__all__ = """' ; \
+        cd PLC/Legacy; ls -1 *.py | grep -v __init__ | sed -e 's,.py$$,,' ; \
+        echo '""".split()') > $@
+
+##########
 force:
 
 .PHONY: all install force clean index tags $(subdirs)