aboutsummaryrefslogtreecommitdiffstats
path: root/udev-config/Makefile
diff options
context:
space:
mode:
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