Lines Matching refs:CFLAGS
6 CFLAGS += -std=c99 -pedantic -Wall -Wextra -Werror
7 CFLAGS += $(DEBUG)
27 $(CC) $(CFLAGS) $(DEFINES) $(SRC) $(INC_DIR) -o $(TARGET) -D UNITY_SUPPORT_64
32 $(CC) $(CFLAGS) $(DEFINES) $(SRC) $(INC_DIR) -o $(TARGET) -m32
37 $(CC) $(CFLAGS) $(DEFINES) $(SRC) $(INC_DIR) -o $(TARGET) -D UNITY_EXCLUDE_STDLIB_MALLOC
41 C89: CFLAGS += -D UNITY_EXCLUDE_STDINT_H # C89 did not have type 'long long', <stdint.h>
43 $(CC) $(CFLAGS) $(DEFINES) $(SRC) $(INC_DIR) -o $(TARGET) -std=c89 && ./$(TARGET)
44 $(CC) $(CFLAGS) $(DEFINES) $(SRC) $(INC_DIR) -o $(TARGET) -D UNITY_EXCLUDE_STDLIB_MALLOC -std=c89
63 CFLAGS += -Wbad-function-cast
64 CFLAGS += -Wcast-qual
65 CFLAGS += -Wconversion
66 CFLAGS += -Wformat=2
67 CFLAGS += -Wmissing-prototypes
68 CFLAGS += -Wold-style-definition
69 CFLAGS += -Wpointer-arith
70 CFLAGS += -Wshadow
71 CFLAGS += -Wstrict-overflow=5
72 CFLAGS += -Wstrict-prototypes
73 CFLAGS += -Wswitch-default
74 CFLAGS += -Wundef
75 CFLAGS += -Wno-error=undef # Warning only, this should not stop the build
76 CFLAGS += -Wunreachable-code
77 CFLAGS += -Wunused
78 CFLAGS += -fstrict-aliasing