commit 92aa1103234e368ea8d67fb08d12c37d7a41d4bb parent bf2485df4176e41cb2150c94ed3f3aca040b02ca Author: sin <sin@2f30.org> Date: Fri, 8 Apr 2016 10:17:00 +0100 include CPPFLAGS when building in case they are used Diffstat:
M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -8,7 +8,7 @@ BIN = stun all: $(BIN) $(BIN): $(OBJ) - $(CC) $(CFLAGS) -o $@ $(OBJ) $(LDLIBS) + $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $(OBJ) $(LDLIBS) stun.o: arg.h