diff options
-rw-r--r-- | 50-docking-station.rules (renamed from 50-docking-station-work-desk.rules) | 0 | ||||
-rw-r--r-- | Makefile | 14 |
2 files changed, 14 insertions, 0 deletions
diff --git a/50-docking-station-work-desk.rules b/50-docking-station.rules index 18c70f5..18c70f5 100644 --- a/50-docking-station-work-desk.rules +++ b/50-docking-station.rules 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 |