From a6793ced1bda4f052ca4e449f89de0d2bcb87866 Mon Sep 17 00:00:00 2001 From: sin Date: Thu, 2 Oct 2014 23:49:19 +0100 Subject: [PATCH] Another EXIT_SUCCESS nuked --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a79f530..fee73f4 100644 --- a/Makefile +++ b/Makefile @@ -170,7 +170,7 @@ sbase-box: $(SRC) util.a @for f in $(SRC); do echo "else if(!strcmp(s, \"`basename $$f .c`\")) `basename $$f .c`_main(argc, argv);" >> build/$@.c; done @echo 'else {' >> build/$@.c @for f in $(SRC); do echo "printf(\"`basename $$f .c`\"); putchar(' ');" >> build/$@.c; done - @echo "putchar(0xa); }; return EXIT_SUCCESS; }" >> build/$@.c + @echo "putchar(0xa); }; return 0; }" >> build/$@.c @echo LD $@ @$(LD) -o $@ build/*.c util.a $(CFLAGS) $(LDFLAGS) @rm -r build