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