- Timestamp:
- Jan 30, 2011, 10:13:21 AM (14 years ago)
- Branches:
- master
- Children:
- 73ee2a6
- Parents:
- 5d96f6a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r5d96f6a r292c832 1 VERSION := 1.0-pre 41 VERSION := 1.0-pre5 2 2 3 3 ETCDIR := /etc … … 12 12 @echo "Select an appropriate install target from the above list" ; exit 1 13 13 14 .PHONY: dist15 14 dist: 16 rm -rf "dist/ bootscripts-clfs-embedded-$(VERSION)"17 mkdir -p "dist/ bootscripts-clfs-embedded-$(VERSION)"18 tar --exclude dist -c * | tar -x -C "dist/ bootscripts-clfs-embedded-$(VERSION)"19 (cd dist; tar -cjf " bootscripts-clfs-embedded-$(VERSION).tar.bz2" "bootscripts-clfs-embedded-$(VERSION)")20 rm -rf "dist/ bootscripts-clfs-embedded-$(VERSION)"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)" 21 20 22 21 create-dirs: … … 29 28 install -m ${MODE} clfs/rc.d/init.d/network ${EXTDIR}/rc.d/init.d/ 30 29 install -m ${MODE} clfs/rc.d/init.d/syslog ${EXTDIR}/rc.d/init.d/ 30 install -m ${MODE} clfs/rc.d/init.d/bridge ${EXTDIR}/rc.d/init.d/ 31 31 ln -sf ../init.d/syslog ${EXTDIR}/rc.d/start/S05syslog 32 32 ln -sf ../init.d/syslog ${EXTDIR}/rc.d/stop/K99syslog 33 33 ln -sf ../init.d/network ${EXTDIR}/rc.d/start/S10network 34 34 ln -sf ../init.d/network ${EXTDIR}/rc.d/stop/K80network 35 ln -sf ../init.d/bridge ${EXTDIR}/rc.d/start/S09bridge 36 ln -sf ../init.d/bridge ${EXTDIR}/rc.d/stop/K81bridge 37 38 install-bcm47xx: create-dirs 39 install -m ${MODE} clfs/rc.d/init.d/bcm47xx-switch ${EXTDIR}/rc.d/init.d/ 40 ln -sf ../init.d/bcm47xx-switch ${EXTDIR}/rc.d/start/S08bcm47xx-switch 41 ln -sf ../init.d/bcm47xx-switch ${EXTDIR}/rc.d/stop/K82bcm47xx-switch 35 42 36 43 install-dropbear: create-dirs … … 39 46 ln -sf ../init.d/sshd ${EXTDIR}/rc.d/stop/K30sshd 40 47 41 .PHONY: all create-dirs install install-dropbear 48 install-hostapd: create-dirs 49 install -m ${MODE} clfs/rc.d/init.d/hostapd ${EXTDIR}/rc.d/init.d 50 ln -sf ../init.d/hostapd ${EXTDIR}/rc.d/start/S08hostapd 51 ln -sf ../init.d/hostapd ${EXTDIR}/rc.d/stop/K82hostapd 52 53 .PHONY: dist all create-dirs install install-bcm47xx install-dropbear \ 54 install-hostapd
Note:
See TracChangeset
for help on using the changeset viewer.