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