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