]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
supress attribute warnings
authorDale Weiler <killfieldengine@gmail.com>
Wed, 2 May 2012 21:57:45 +0000 (17:57 -0400)
committerDale Weiler <killfieldengine@gmail.com>
Wed, 2 May 2012 21:57:45 +0000 (17:57 -0400)
Makefile

index 3b04712c001bf56e8e137c1c847c207d33e353be..949c42abff0d4eb3d114633157c24101142147a3 100644 (file)
--- a/Makefile
+++ b/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