From a3fb81903d2e801a8fc673d9ee0fbf1b948bb6a9 Mon Sep 17 00:00:00 2001 From: piepie62 Date: Wed, 22 Apr 2020 19:31:59 -0400 Subject: [PATCH] Strip executable after building --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 8a0db85..417c25f 100644 --- a/Makefile +++ b/Makefile @@ -56,6 +56,7 @@ clean: $(EXEC_NAME): $(BUILD_OFILES) $(LD) $(BUILD_OFILES) $(LDFLAGS) -o $@ + strip $@ $(BUILD)/%.c.o: $$(subst __PrEvDiR,..,$$*.c) @mkdir -p $(dir $@)