- Timestamp:
- Feb 21, 2006, 2:05:28 AM (19 years ago)
- Branches:
- clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- 5f6535b
- Parents:
- 40f7031
- Location:
- udev
- Files:
-
- 4 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
udev/Makefile
r40f7031 r615dd64 5 5 CONFMODE=644 6 6 7 8 all: install 7 all: help 9 8 10 9 install: device_dirs device_links rules scripts boot mknod_devices … … 74 73 fi 75 74 76 .PHONY: all install device_dirs device_links rules scripts boot mknod_devices 75 help: 76 @echo "command description" 77 @echo "---------------------------------------------------------------------------------------" 78 @echo "make install install udev rules package and helper scripts" 79 @echo "make install-network install network helper package" 80 @echo "make install-network-upgrade upgrades current network helper package" 81 @echo "---------------------------------------------------------------------------------------" 82 83 install-helper-functions: 84 install -m 644 contrib/common/helper.functions ${DESTDIR}/lib/udev/helper.functions 85 86 install-network: install-helper-functions 87 install -m ${SCRIPTMODE} contrib/network/network_helper.sh ${DESTDIR}/lib/udev/network_helper.sh 88 install -m ${INITMODE} contrib/network/network ${DESTDIR}/etc/rc.d/init.d/network 89 @echo "Adding rules to ${DESTDIR}/etc/udev/rules.d/35-helper.rules." 90 @cp ${DESTDIR}/etc/udev/rules.d/35-helper.rules /tmp/first 91 @cat /tmp/first contrib/network/rules > ${DESTDIR}/etc/udev/rules.d/35-helper.rules 2>&1 92 93 install-network-update: 94 install -m ${SCRIPTMODE} contrib/network/network_helper.sh ${DESTDIR}/lib/udev/network_helper.sh 95 install -m ${INITMODE} contrib/network/network ${DESTDIR}/etc/rc.d/init.d/network 96 97 .PHONY: all install device_dirs device_links rules scripts boot mknod_devices \ 98 help install-helper-functions install-network install-network-update
Note:
See TracChangeset
for help on using the changeset viewer.