SCRIPTS = alpinecfg.sh \ bootmisc.sh \ checkfs \ checkroot.sh \ coldplug \ cron \ dnsd \ hostname \ httpd \ hwclock \ hwdrivers \ inetd \ keymap \ localinit \ localmount \ mdev \ modutils \ networking \ procps \ rc.local \ rcK \ rcL \ rcS \ rdate\ runtimes \ swap\ syslog \ tuntap \ vlan \ watchdog all: install: $(SCRIPTS) install -m 0755 -d $(DESTDIR)/etc install -m 0755 -d $(DESTDIR)/etc/init.d for i in $(SCRIPTS) ; do \ install -m 755 -D $$i $(DESTDIR)/etc/init.d/$$i ;\ done clean: rm -f *~ .PHONY: all clean