Last change
on this file since 47a846f was 47a846f, checked in by Andrew Bradford <andrew@…>, 11 years ago |
Makefile: fix .PHONY
|
-
Property mode
set to
100644
|
File size:
965 bytes
|
Rev | Line | |
---|
[5d96f6a] | 1 | ETCDIR := /etc
|
---|
| 2 | EXTDIR := ${DESTDIR}${ETCDIR}
|
---|
| 3 | MODE := 754
|
---|
| 4 | DIRMODE := 755
|
---|
| 5 | CONFMODE := 644
|
---|
[97ad60e] | 6 |
|
---|
[929589c] | 7 | all: install-bootscripts install-dropbear
|
---|
[5d96f6a] | 8 |
|
---|
[97ad60e] | 9 | create-dirs:
|
---|
[df6a922] | 10 | install -d -m ${DIRMODE} ${EXTDIR}/rc.d/init.d
|
---|
| 11 | install -d -m ${DIRMODE} ${EXTDIR}/rc.d/start
|
---|
| 12 | install -d -m ${DIRMODE} ${EXTDIR}/rc.d/stop
|
---|
[97ad60e] | 13 |
|
---|
[fe1b471] | 14 | install-bootscripts: create-dirs
|
---|
[97ad60e] | 15 | install -m ${CONFMODE} clfs/rc.d/init.d/functions ${EXTDIR}/rc.d/init.d/
|
---|
| 16 | install -m ${MODE} clfs/rc.d/startup ${EXTDIR}/rc.d/
|
---|
| 17 | install -m ${MODE} clfs/rc.d/shutdown ${EXTDIR}/rc.d/
|
---|
| 18 | install -m ${MODE} clfs/rc.d/init.d/syslog ${EXTDIR}/rc.d/init.d/
|
---|
| 19 | ln -sf ../init.d/syslog ${EXTDIR}/rc.d/start/S05syslog
|
---|
| 20 | ln -sf ../init.d/syslog ${EXTDIR}/rc.d/stop/K99syslog
|
---|
[292c832] | 21 |
|
---|
[97ad60e] | 22 | install-dropbear: create-dirs
|
---|
| 23 | install -m ${MODE} clfs/rc.d/init.d/sshd ${EXTDIR}/rc.d/init.d/
|
---|
| 24 | ln -sf ../init.d/sshd ${EXTDIR}/rc.d/start/S30sshd
|
---|
| 25 | ln -sf ../init.d/sshd ${EXTDIR}/rc.d/stop/K30sshd
|
---|
| 26 |
|
---|
[47a846f] | 27 | .PHONY: all create-dirs install-bootscripts install-dropbear
|
---|
Note:
See
TracBrowser
for help on using the repository browser.