aboutsummaryrefslogtreecommitdiffstats
path: root/udev-config/Makefile
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2012-08-31 16:42:52 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2012-08-31 16:42:52 +0000
commited992fbc68220ed47d3d20f3f2a3d7f1e92288cb (patch)
treec8931304d1991e9e3d0ee69a649824b9640113d2 /udev-config/Makefile
parent4afbb4a75a924c2edb72d68ea76ccbb4eea868b0 (diff)
Minor typos in bootscripts.
Remove obsolete udev-config directory. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9970 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'udev-config/Makefile')
-rw-r--r--udev-config/Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/udev-config/Makefile b/udev-config/Makefile
deleted file mode 100644
index aa9dad742..000000000
--- a/udev-config/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-# Makefile to install udev rules and documentation
-
-PREFIX = /usr
-RULES_DIR = /etc/udev/rules.d
-INSTALL = install
-INSTALL_DATA = $(INSTALL) -m644
-RULES_FILES = \
- 55-lfs.rules
-DOC_FILES = $(RULES_FILES:.rules=.txt)
-
-# Location to install the docs
-DOC_DIR = $(PREFIX)/share/doc/udev-config
-
-all:
-
-install: install-rules
-
-install-rules:
- $(INSTALL) -d $(DESTDIR)$(RULES_DIR)
- for rule in $(RULES_FILES); do \
- $(INSTALL_DATA) $$rule $(DESTDIR)$(RULES_DIR) || exit 1; \
- done;
-
-install-doc:
- $(INSTALL) -d $(DESTDIR)$(DOC_DIR)
- for doc in $(DOC_FILES); do \
- $(INSTALL_DATA) doc/$$doc $(DESTDIR)$(DOC_DIR) || exit 1; \
- done