summaryrefslogtreecommitdiffstats
path: root/command-stubs/Makefile
blob: e68983bba2b6c99da9a0116325df4ae78d65b9aa (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

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