From a6c06471d437ccb6ffca5d4c20623838736bf179 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Fri, 18 Nov 2022 16:19:21 +0100 Subject: [PATCH] renamed installHeader to installHeaderCore --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5c50116..e9de51b 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ 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: +installHeaderCore: for file in $(INCLUDE_CORE); do install -m 755 -D $(DOLLAR)file -t $(INSTALL_INCLUDE)/$(PROJECT_NAME); done ln -sf $(INSTALL_INCLUDE)/$(PROJECT_NAME)/$(PROJECT_NAME).h $(INSTALL_INCLUDE)/$(PROJECT_NAME).h @@ -52,6 +52,6 @@ app: clean: rm -rf $(OUTPUT)/* *.o *.so -install: installHeader installLib installApp clean +install: installHeaderCore installLib installApp clean installTest: install test all: install \ No newline at end of file