openrc/runlevels.mk

24 lines
536 B
Makefile
Raw Normal View History

# Handy runlevel stuff
LEVELDIR = $(DESTDIR)/etc/runlevels
BOOTDIR = $(LEVELDIR)/boot
DEFAULTDIR = $(LEVELDIR)/default
INSTALL ?= install
install:
2007-11-28 21:15:03 +05:30
if ! test -d "$(BOOTDIR)"; then \
$(INSTALL) -d $(BOOTDIR) || exit $$?; \
for x in $(BOOT); do ln -snf /etc/init.d/"$$x" $(BOOTDIR)/"$$x" || exit $$?; done \
fi
2007-11-28 21:15:03 +05:30
if ! test -d "$(DEFAULTDIR)"; then \
$(INSTALL) -d $(DEFAULTDIR) || exit $$?; \
for x in $(DEFAULT); do ln -snf /etc/init.d/"$$x" $(DEFAULTDIR)/"$$x" || exit $$?; done \
fi
all:
clean:
2008-01-02 22:58:35 +05:30
depend:
# vim: set ts=4 :