Compare commits

...

2 Commits

Author SHA1 Message Date
3bf4f854c7 init: return 0 at the end of main 2022-10-17 17:19:31 +02:00
8b70635e79 Do not strip apps 2022-10-17 17:19:23 +02:00
2 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,6 @@ CFLAGS := -Wall -Wextra -Werror -Os
$(APPS_BIN)/%: $(APPS_SRC)/%.c $(APPS_BIN)/%: $(APPS_SRC)/%.c
@mkdir -p $(@D) @mkdir -p $(@D)
$(CC) $(CFLAGS) -o $@ $^ $(CC) $(CFLAGS) -o $@ $^
$(STRIP) $@
build: $(REAL_APPS) build: $(REAL_APPS)

View File

@ -168,5 +168,5 @@ int main()
printf("Success!! Got PID %ld\n", child); printf("Success!! Got PID %ld\n", child);
return 1; return 0;
} }