summaryrefslogtreecommitdiffstats
path: root/command-stubs
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-11-01 20:41:41 +0000
committerJeremy Katz <katzj@redhat.com>2002-11-01 20:41:41 +0000
commit478851a82bf21468092d4eb0bcb737e1fd523ed6 (patch)
tree7c850a254c3a359741d6d8bd2ecdef0dffd1f11e /command-stubs
parent2c67a005f7ad23d63aaa29eedfbc6e9e61794cc4 (diff)
downloadanaconda-478851a82bf21468092d4eb0bcb737e1fd523ed6.tar.gz
anaconda-478851a82bf21468092d4eb0bcb737e1fd523ed6.tar.xz
anaconda-478851a82bf21468092d4eb0bcb737e1fd523ed6.zip
command stubs have moved into a subdirectory (rcs files were copied). add
their makefile
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