INITMODE=754
DIRMODE=755
SCRIPTMODE=755
RULESMODE=644
CONFMODE=644

all: install

install: device_dirs device_link rules scripts boot

rules:
	install -m ${RULESMODE} ${DESTDIR}/etc/udev/rules.d/05-udev-early.rules
	install -m ${RULESMODE} ${DESTDIR}/etc/udev/rules.d/50-udev.rules
	install -m ${RULESMODE} ${DESTDIR}/etc/udev/rules.d/60-persistent.rules
	install -m ${RULESMODE} ${DESTDIR}/etc/udev/rules.d/80-sysconfig.rules
	install -m ${RULESMODE} ${DESTDIR}/etc/udev/rules.d/95-debug.rules

scripts:
	install -m ${SCRIPTMODE) ${DESTDIR}/lib/udev/remove_floppy_devices.sh
	install -m ${SCRIPTMODE) ${DESTDIR}/lib/udev/load_floppy_module.sh
	install -m ${SCRIPTMODE) ${DESTDIR}/lib/udev/ide.sh
	install -m ${SCRIPTMODE) ${DESTDIR}/lib/udev/firmware.sh
	install -m ${SCRIPTMODE) ${DESTDIR}/lib/udev/input.sh
	install -m ${SCRIPTMODE) ${DESTDIR}/lib/udev/mount.sh
	install -m ${CONFMODE} ${DESTDIR}/etc/scsi_id.config
	install -m ${SCRIPTMODE) ${DESTDIR}/usr/bin/udev.count_events

boot:
	install -d  ${DESTDIR}/usr/share/udev
	install -m ${INITMODE} ${DESTDIR}/etc/rc.d/init.d/udev
	install -m ${INITMODE} ${DESTDIR}/etc/rc.d/init.d/udev_retry
	install -m ${CONFMODE} ${DESTDIR}/var/adm/fillup-templates/sysconfig.storage
	install -m ${SCRIPTMODE) ${DESTDIR}/usr/share/udev/show_event_log
	install -m ${CONFMODE}  ${DESTDIR}/usr/share/udev/README.Logging
	ln -sf ${DESTDIR}/rc.d/init.d/udev ${DESTDIR}/rc.d/rcsysinit.d/S10udev
	ln -sf ${DESTDIR}/rc.d/init.d/udev_retry ${DESTDIR}/rc.d/rcsysinit.d/S15udev_retry

device_dirs:
	install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices
	install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/pts
	install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/shm
	install -d -m ${DIRMODE} ${DESTDIR}/lib/udev/devices/net

device_links:
	ln -sn /proc/self/fd ${DESTDIR}/lib/udev/devices/fd
	ln -sn /proc/self/fd/0 ${DESTDIR}/lib/udev/devices/stdin
	ln -sn /proc/self/fd/1 ${DESTDIR}/lib/udev/devices/stdout
	ln -sn /proc/self/fd/2 ${DESTDIR}/lib/udev/devices/stderr
	ln -sn /proc/kcore ${DESTDIR}/lib/udev/devices/core

.PHONY: all install device_dirs device_links rules scripts boot
