Do not append CPPFLAGS to CFLAGS

This commit is contained in:
sin 2014-11-17 10:31:29 +00:00
parent 2fd6e769dd
commit e1c044e298
2 changed files with 4 additions and 4 deletions

View File

@ -134,10 +134,10 @@ bin: $(BIN)
$(OBJ): $(HDR) config.mk
.o:
$(LD) -o $@ $< libutil.a $(LDFLAGS)
$(LD) $(LDFLAGS) -o $@ $< libutil.a
.c.o:
$(CC) $(CFLAGS) -o $@ -c $<
$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ -c $<
libutil.a: $(LIB)
$(AR) -r -c $@ $?
@ -177,7 +177,7 @@ sbase-box: $(SRC) libutil.a
echo 'else {' >> build/$@.c
for f in $(SRC); do echo "printf(\"`basename $$f .c`\"); putchar(' ');" >> build/$@.c; done
echo "putchar(0xa); }; return 0; }" >> build/$@.c
$(LD) -o $@ build/*.c libutil.a $(CFLAGS) $(LDFLAGS)
$(LD) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ build/*.c libutil.a
rm -r build
clean:

View File

@ -9,5 +9,5 @@ MANPREFIX = $(PREFIX)/share/man
#CC = musl-gcc
LD = $(CC)
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE
CFLAGS = -std=c99 -Wall -pedantic $(CPPFLAGS)
CFLAGS = -std=c99 -Wall -pedantic
LDFLAGS = -s