blob: c7a216fd1a87beb82238e0e128633fff8fe4c2f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $Id$
-include ../Makefile.conf
include ../Makefile.rules
all: rc.autofs
clean:
install: all
-mv -f $(INSTALLROOT)/etc/auto.master $(INSTALLROOT)/etc/auto.master.old
install -c auto.master -m 644 $(INSTALLROOT)/etc
-mv -f $(INSTALLROOT)/etc/auto.misc $(INSTALLROOT)/etc/auto.misc.old
install -c auto.misc -m 644 $(INSTALLROOT)/etc
install -c rc.autofs -m 755 $(INSTALLROOT)$(initdir)/autofs
rc.autofs: rc.autofs.in
sed -e "s/@@sbindir@@/$(sbindir)/g" < rc.autofs.in > rc.autofs
|