From 21e992aa3a7bc92c45cdf17dc696e62532a738cf Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Wed, 2 May 2012 17:57:45 -0400 Subject: [PATCH] supress attribute warnings --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.2