summaryrefslogtreecommitdiffstats
path: root/command-stubs
diff options
context:
space:
mode:
Diffstat (limited to 'command-stubs')
-rw-r--r--command-stubs/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/command-stubs/Makefile b/command-stubs/Makefile
new file mode 100644
index 000000000..64ff41062
--- /dev/null
+++ b/command-stubs/Makefile
@@ -0,0 +1,18 @@
+include ../Makefile.inc
+
+STUBS = raidstart-stub raidstop-stub kudzu-probe-stub list-harddrives-stub \
+ loadkeys-stub losetup-stub pump-stub
+
+all:
+ @echo "Nothing to do"
+
+depend:
+ @echo "Nothing to do"
+
+clean:
+ /bin/rm -f *.pyc *~
+
+install:
+ for i in $(STUBS) ; do \
+ install -m 755 $$i $(DESTDIR)/$(PYTHONLIBDIR) ; \
+ done