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