diff options
author | Marvin Borner | 2021-05-18 18:37:19 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-18 18:37:50 +0200 |
commit | 4b4bfec8a312132acc84b5166998d0cfa7c01931 (patch) | |
tree | eeb494cf539b4bfdb6dae23a34f5f1c5d7167667 /apps/wm | |
parent | eb13f2a8f536fecf918699bc19b3087a78a417d6 (diff) |
Improved entire building chain (especially debugging)
Diffstat (limited to 'apps/wm')
-rw-r--r-- | apps/wm/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/wm/Makefile b/apps/wm/Makefile index abceef7..8fb0096 100644 --- a/apps/wm/Makefile +++ b/apps/wm/Makefile @@ -5,6 +5,9 @@ OBJS = wm.o all: $(OBJS) @mkdir -p $(BUILD)/apps/wm/ @$(LD) -o $(BUILD)/apps/wm/exec $(LDFLAGS) $^ -lgui -ltxt -lc +ifeq ($(CONFIG_STRIP), true) + @$(ST) --strip-all $(BUILD)/apps/wm/exec +endif clean: @$(RM) -f $(OBJS) |