summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
Diffstat (limited to 'mk')
-rw-r--r--mk/runlevels.mk22
1 files changed, 0 insertions, 22 deletions
diff --git a/mk/runlevels.mk b/mk/runlevels.mk
deleted file mode 100644
index 6fc851c..0000000
--- a/mk/runlevels.mk
+++ /dev/null
@@ -1,22 +0,0 @@
-# Rules for installing runlevels
-# Copyright 2007-2008 Roy Marples <roy@marples.name>
-
-LEVELDIR= ${DESTDIR}/etc/runlevels
-BOOTDIR= ${LEVELDIR}/boot
-DEFAULTDIR= ${LEVELDIR}/default
-
-INSTALL?= install
-
-all:
-
-install:
- 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
- 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
-
-clean: