From: Dale Weiler Date: Wed, 2 May 2012 21:57:45 +0000 (-0400) Subject: supress attribute warnings X-Git-Tag: 0.1-rc1~512 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=21e992aa3a7bc92c45cdf17dc696e62532a738cf;p=xonotic%2Fgmqcc.git supress attribute warnings --- diff --git a/Makefile b/Makefile index 3b04712..949c42a 100644 --- 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