source: bootscripts-embedded/Makefile@ 929589c

Last change on this file since 929589c was 929589c, checked in by Andrew Bradford <andrew@…>, 11 years ago

Makefile: Remove dist target

We can get a tarball from the git web interface, as is done today in
CLFS embedded book.

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[5d96f6a]1ETCDIR := /etc
2EXTDIR := ${DESTDIR}${ETCDIR}
3MODE := 754
4DIRMODE := 755
5CONFMODE := 644
[97ad60e]6
[929589c]7all: install-bootscripts install-dropbear
[5d96f6a]8
[97ad60e]9create-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]14install-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/network ${EXTDIR}/rc.d/init.d/
19 install -m ${MODE} clfs/rc.d/init.d/syslog ${EXTDIR}/rc.d/init.d/
20 ln -sf ../init.d/syslog ${EXTDIR}/rc.d/start/S05syslog
21 ln -sf ../init.d/syslog ${EXTDIR}/rc.d/stop/K99syslog
22 ln -sf ../init.d/network ${EXTDIR}/rc.d/start/S10network
23 ln -sf ../init.d/network ${EXTDIR}/rc.d/stop/K80network
[292c832]24
[97ad60e]25install-dropbear: create-dirs
26 install -m ${MODE} clfs/rc.d/init.d/sshd ${EXTDIR}/rc.d/init.d/
27 ln -sf ../init.d/sshd ${EXTDIR}/rc.d/start/S30sshd
28 ln -sf ../init.d/sshd ${EXTDIR}/rc.d/stop/K30sshd
29
[929589c]30.PHONY: all create-dirs install install-dropbear
Note: See TracBrowser for help on using the repository browser.