forked from DonyaOS/Donya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
55 lines (45 loc) · 2.06 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
VERSION := 1.0-pre5
ETCDIR := /etc
EXTDIR := ${DESTDIR}${ETCDIR}
MODE := 754
DIRMODE := 755
CONFMODE := 644
all:
@grep "^install" Makefile | cut -d ":" -f 1
@echo dist
@echo "Select an appropriate install target from the above list" ; exit 1
dist:
rm -rf "dist/clfs-embedded-bootscripts-$(VERSION)"
create-dirs:
install -d -m ${DIRMODE} ${EXTDIR}/rc.d/init.d
install -d -m ${DIRMODE} ${EXTDIR}/rc.d/start
install -d -m ${DIRMODE} ${EXTDIR}/rc.d/stop
install-bootscripts: create-dirs
install -m ${CONFMODE} clfs/rc.d/init.d/functions ${EXTDIR}/rc.d/init.d/
install-bootscripts: create-dirs
install -m ${CONFMODE} clfs/rc.d/init.d/functions ${EXTDIR}/rc.d/init.d/
install -m ${MODE} clfs/rc.d/startup ${EXTDIR}/rc.d/
install -m ${MODE} clfs/rc.d/shutdown ${EXTDIR}/rc.d/
install -m ${MODE} clfs/rc.d/init.d/network ${EXTDIR}/rc.d/init.d/
install -m ${MODE} clfs/rc.d/init.d/syslog ${EXTDIR}/rc.d/init.d/
install -m ${MODE} clfs/rc.d/init.d/bridge ${EXTDIR}/rc.d/init.d/
ln -sf ../init.d/syslog ${EXTDIR}/rc.d/start/S05syslog
ln -sf ../init.d/syslog ${EXTDIR}/rc.d/stop/K99syslog
ln -sf ../init.d/network ${EXTDIR}/rc.d/start/S10network
ln -sf ../init.d/network ${EXTDIR}/rc.d/stop/K80network
ln -sf ../init.d/bridge ${EXTDIR}/rc.d/start/S09bridge
ln -sf ../init.d/bridge ${EXTDIR}/rc.d/stop/K81bridge
install-bcm47xx: create-dirs
install -m ${MODE} clfs/rc.d/init.d/bcm47xx-switch ${EXTDIR}/rc.d/init.d/
ln -sf ../init.d/bcm47xx-switch ${EXTDIR}/rc.d/start/S08bcm47xx-switch
ln -sf ../init.d/bcm47xx-switch ${EXTDIR}/rc.d/stop/K82bcm47xx-switch
install-dropbear: create-dirs
install -m ${MODE} clfs/rc.d/init.d/sshd ${EXTDIR}/rc.d/init.d/
ln -sf ../init.d/sshd ${EXTDIR}/rc.d/start/S30sshd
ln -sf ../init.d/sshd ${EXTDIR}/rc.d/stop/K30sshd
install-hostapd: create-dirs
install -m ${MODE} clfs/rc.d/init.d/hostapd ${EXTDIR}/rc.d/init.d
ln -sf ../init.d/hostapd ${EXTDIR}/rc.d/start/S08hostapd
ln -sf ../init.d/hostapd ${EXTDIR}/rc.d/stop/K82hostapd
.PHONY: dist all create-dirs install install-bcm47xx install-dropbear \
install-hostapd