chiark / gitweb /
finalise changelog
[autopkgtest.git] / Makefile
index 808b74b95e84aa2063f294392bf6e4c7f6af18d0..4beca8ba39c2760eb680f6ad0e14e53f299bdd69 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -25,25 +25,36 @@ include settings.make
 programs =     virt-subproc/adt-virt-chroot \
                virt-subproc/adt-virt-xenlvm \
                virt-subproc/adt-virt-null \
-               runner/adt-run
+               virt-subproc/adt-virt-schroot \
+               runner/adt-run \
+               runner/adt-testreport-onepackage \
+               runner/adt-testreport-runloop \
+               runner/adt-testreport-cronjob
 
-pythonfiles =  virt-subproc/VirtSubproc.py
+examples =     runner/onepackage-config \
+               runner/ubuntu-config
+
+pythonfiles =  lib/Autopkgtest.py \
+               lib/VirtSubproc.py
 
 all:
        cd xen && $(MAKE)
 
 install-here:
-       $(INSTALL_DIRS) -d $(bindir) $(docdir) $(man1dir) $(pythondir)
+       $(INSTALL_DIRS) -d $(bindir) $(docdir) $(man1dir) \
+               $(pythondir) $(examplesdir)
        set -e; for f in $(programs); do \
                $(INSTALL_PROGRAM) $$f $(bindir); \
                test ! -f $$f.1 || $(INSTALL_DOC) $$f.1 $(man1dir); \
                done
        $(INSTALL_DATA) $(pythonfiles) $(pythondir)
        $(INSTALL_DOC) CREDITS debian/changelog $(docdir)
-       $(INSTALL_DOC) doc/README*[^~] $(docdir)
+       $(INSTALL_DOC) doc/README*[!~] $(docdir)
+       $(INSTALL_DOC) $(examples) $(examplesdir)
 
 install: install-here
        cd xen && $(MAKE) install
 
 clean:
+       rm -f */*.pyc
        cd xen && $(MAKE) clean