From 70493d1a9317e5ed492d017e56935209221e5c97 Mon Sep 17 00:00:00 2001 From: "jochen@g14" Date: Sat, 30 Mar 2024 19:39:42 +0100 Subject: [PATCH] Fix error in makefile --- Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index 5cc825c9..f5f7a967 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,6 @@ zshcpl = $(datarootdir)/zsh/site-functions BIN_ROG := rog-control-center BIN_C := asusctl -BIN_S := slashctl BIN_D := asusd BIN_U := asusd-user LEDCFG := aura_support.ron @@ -48,7 +47,6 @@ install-program: $(INSTALL_PROGRAM) "./target/$(TARGET)/$(BIN_ROG)" "$(DESTDIR)$(bindir)/$(BIN_ROG)" $(INSTALL_PROGRAM) "./target/$(TARGET)/$(BIN_C)" "$(DESTDIR)$(bindir)/$(BIN_C)" - $(INSTALL_PROGRAM) "./target/$(TARGET)/$(BIN_S)" "$(DESTDIR)$(bindir)/$(BIN_S)" $(INSTALL_PROGRAM) "./target/$(TARGET)/$(BIN_D)" "$(DESTDIR)$(bindir)/$(BIN_D)" $(INSTALL_PROGRAM) "./target/$(TARGET)/$(BIN_U)" "$(DESTDIR)$(bindir)/$(BIN_U)" @@ -88,7 +86,6 @@ uninstall: rm -r "$(DESTDIR)$(datarootdir)/icons/hicolor/512x512/apps/$(BIN_ROG).png" rm -f "$(DESTDIR)$(bindir)/$(BIN_C)" - rm -f "$(DESTDIR)$(bindir)/$(BIN_S)" rm -f "$(DESTDIR)$(bindir)/$(BIN_D)" rm -f "$(DESTDIR)$(libdir)/udev/rules.d/99-$(BIN_D).rules" rm -f "$(DESTDIR)/etc/asusd/$(LEDCFG)" @@ -145,7 +142,6 @@ endif cargo build $(ARGS) ifneq ($(STRIP_BINARIES),0) strip -s ./target/$(TARGET)/$(BIN_C) - strip -s ./target/$(TARGET)/$(BIN_S) strip -s ./target/$(TARGET)/$(BIN_D) strip -s ./target/$(TARGET)/$(BIN_U) strip -s ./target/$(TARGET)/$(BIN_ROG)