chiark / gitweb /
* adt-xenlvm-with-testbed: sleep 1 after xm destroy, which is racy.
[autopkgtest.git] / Makefile
index c9f0a22190133e0129f9a5dd8625dc40fe43cf35..9f5c45ccbd1468bcc8c6589d1faba6ad3d00aa94 100644 (file)
--- a/Makefile
+++ b/Makefile
 
 include settings.make
 
-programs =     virt-chroot/adt-virt-chroot \
-               runner/adt-run
+programs =     virt-subproc/adt-virt-chroot \
+               virt-subproc/adt-virt-xenlvm \
+               virt-subproc/adt-virt-null \
+               runner/adt-run \
+               runner/adt-testreport-onepackage \
+               runner/adt-testreport-runloop \
+               runner/adt-testreport-cronjob
 
-pythonfiles =  virt-chroot/VirtSubproc.py
+examples =     runner/onepackage-config \
+               runner/ubuntu-config
+
+pythonfiles =  virt-subproc/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) $(examples) $(examplesdir)
 
 install: install-here
        cd xen && $(MAKE) install