mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 03:50:36 +00:00
supress attribute warnings
This commit is contained in:
parent
1ae035c714
commit
21e992aa3a
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -1,5 +1,5 @@
|
|||
CC ?= clang
|
||||
CFLAGS += -Wall -I. -pedantic-errors -std=c90
|
||||
CFLAGS += -Wall -I. -pedantic-errors -std=c90 -Wno-attributes
|
||||
OBJ = lex.o \
|
||||
error.o \
|
||||
parse.o \
|
||||
|
@ -8,7 +8,7 @@ OBJ = lex.o \
|
|||
code.o \
|
||||
asm.o \
|
||||
ast.o \
|
||||
ir.o
|
||||
ir.o
|
||||
OBJ_A = test/ast-test.o
|
||||
OBJ_I = test/ir-test.o
|
||||
OBJ_C = main.o
|
||||
|
|
Loading…
Reference in a new issue