From 0e74965d7f6eeee9dad0be4e1fe12bf8cf280c19 Mon Sep 17 00:00:00 2001 From: Christian Jullien Date: Sun, 10 Jan 2021 05:57:52 +0100 Subject: [PATCH] make install always strips, only install-strip target should do --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 284fbef5..eea0e292 100644 --- a/Makefile +++ b/Makefile @@ -122,7 +122,7 @@ cross: $(LIBTCC1_CROSS) $(PROGS_CROSS) # build specific cross compiler & lib cross-%: %-tcc$(EXESUF) %-libtcc1.a ; -install: ; @$(MAKE) --no-print-directory install$(CFG) +install: ; @$(MAKE) --no-print-directory install$(CFG) CONFIG_strip=no install-strip: ; @$(MAKE) --no-print-directory install$(CFG) CONFIG_strip=yes uninstall: ; @$(MAKE) --no-print-directory uninstall$(CFG)