diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e858a74 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +UDEV_RULE_DIR := /etc/udev/rules.d +RULES_FILE := 50-docking-station.rules + +$(UDEV_RULE_DIR)/$(RULES_FILE): $(RULES_FILE) + @echo "Installing udev rules (requires root access)" + sudo install --owner=root --group=root --mode=644 -t $(UDEV_RULE_DIR) $(RULES_FILE) + +install: $(UDEV_RULE_DIR)/$(RULES_FILE) + +uninstall: + @echo "Removing udev rules (requires root access)" + sudo rm "$(UDEV_RULE_DIR)/$(RULES_FILE)" + +.PHONY: install uninstall |