summaryrefslogtreecommitdiffstats
path: root/command-stubs/Makefile
blob: b69270f1806e8388a09f10dc0b7a1827239e70b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
include ../Makefile.inc

STUBS = raidstart-stub raidstop-stub kudzu-probe-stub list-harddrives-stub \
	loadkeys-stub losetup-stub pump-stub mknod-stub rescue-startx-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