From f617d103430c8185e45589bbb279f9b4ee1bde1c Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Tue, 28 Jun 2022 17:45:39 +0200 Subject: [PATCH] created noTarget make rule this will be run when no target is set --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index ff82425..5570a39 100644 --- a/Makefile +++ b/Makefile @@ -26,6 +26,9 @@ DOLLAR=$ ########## +noTarget: # Do not use this, please <3 + @echo Hey you... You have to enter your target, too. Use \'install\' target for installing $(PROJECT_NAME)-core. + installHeader: for file in $(INCLUDE); do install -m 755 -D $(DOLLAR)file -t $(INSTALL_INCLUDE)/$(PROJECT_NAME); done install -m 755 $(INCLUDE_DIR)/$(PROJECT_NAME).h $(INSTALL_INCLUDE)/$(PROJECT_NAME).h