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