diff options
Diffstat (limited to 'apps/chess/Makefile')
-rw-r--r-- | apps/chess/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/chess/Makefile b/apps/chess/Makefile index b538807..e84f65f 100644 --- a/apps/chess/Makefile +++ b/apps/chess/Makefile @@ -5,6 +5,9 @@ OBJS = chess.o all: $(OBJS) @mkdir -p $(BUILD)/apps/chess/ @$(LD) -o $(BUILD)/apps/chess/exec $(LDFLAGS) $^ -lgui -ltxt -lc +ifeq ($(CONFIG_STRIP), true) + @$(ST) --strip-all $(BUILD)/apps/chess/exec +endif clean: @$(RM) -f $(OBJS) |