1 | VERSION := 1.0-pre5
|
---|
2 |
|
---|
3 | ETCDIR := /etc
|
---|
4 | EXTDIR := ${DESTDIR}${ETCDIR}
|
---|
5 | MODE := 754
|
---|
6 | DIRMODE := 755
|
---|
7 | CONFMODE := 644
|
---|
8 |
|
---|
9 | all:
|
---|
10 | @grep "^install" Makefile | cut -d ":" -f 1
|
---|
11 | @echo dist
|
---|
12 | @echo "Select an appropriate install target from the above list" ; exit 1
|
---|
13 |
|
---|
14 | dist:
|
---|
15 | rm -rf "dist/clfs-embedded-bootscripts-$(VERSION)"
|
---|
16 | mkdir -p "dist/clfs-embedded-bootscripts-$(VERSION)"
|
---|
17 | tar --exclude dist -c * | tar -x -C "dist/clfs-embedded-bootscripts-$(VERSION)"
|
---|
18 | (cd dist; tar -cjf "clfs-embedded-bootscripts-$(VERSION).tar.bz2" "clfs-embedded-bootscripts-$(VERSION)")
|
---|
19 | rm -rf "dist/clfs-embedded-bootscripts-$(VERSION)"
|
---|
20 |
|
---|
21 | create-dirs:
|
---|
22 | install -d -m ${DIRMODE} ${EXTDIR}/rc.d/init.d
|
---|
23 | install -d -m ${DIRMODE} ${EXTDIR}/rc.d/start
|
---|
24 | install -d -m ${DIRMODE} ${EXTDIR}/rc.d/stop
|
---|
25 |
|
---|
26 | install-bootscripts: create-dirs
|
---|
27 | install -m ${CONFMODE} clfs/rc.d/init.d/functions ${EXTDIR}/rc.d/init.d/
|
---|
28 | install -m ${MODE} clfs/rc.d/startup ${EXTDIR}/rc.d/
|
---|
29 | install -m ${MODE} clfs/rc.d/shutdown ${EXTDIR}/rc.d/
|
---|
30 | install -m ${MODE} clfs/rc.d/init.d/network ${EXTDIR}/rc.d/init.d/
|
---|
31 | install -m ${MODE} clfs/rc.d/init.d/syslog ${EXTDIR}/rc.d/init.d/
|
---|
32 | ln -sf ../init.d/syslog ${EXTDIR}/rc.d/start/S05syslog
|
---|
33 | ln -sf ../init.d/syslog ${EXTDIR}/rc.d/stop/K99syslog
|
---|
34 | ln -sf ../init.d/network ${EXTDIR}/rc.d/start/S10network
|
---|
35 | ln -sf ../init.d/network ${EXTDIR}/rc.d/stop/K80network
|
---|
36 |
|
---|
37 | install-dropbear: create-dirs
|
---|
38 | install -m ${MODE} clfs/rc.d/init.d/sshd ${EXTDIR}/rc.d/init.d/
|
---|
39 | ln -sf ../init.d/sshd ${EXTDIR}/rc.d/start/S30sshd
|
---|
40 | ln -sf ../init.d/sshd ${EXTDIR}/rc.d/stop/K30sshd
|
---|
41 |
|
---|
42 | .PHONY: dist all create-dirs install install-dropbear
|
---|