From 3fdb12ef8182b8bbe1f3113a55f3bfad4288f432 Mon Sep 17 00:00:00 2001 From: Igmar Palsenberg Date: Mon, 6 Jun 2011 16:25:14 +0200 Subject: [PATCH 1/6] Remove CFLAGS and INC from the .s target. Not needed, generates warnings with clang. --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 5c17642..64003f1 100644 --- a/Makefile +++ b/Makefile @@ -63,7 +63,7 @@ include/bits/alltypes.h: include/bits/alltypes.h.sh sh $< > $@ %.o: $(ARCH)/%.s - $(CC) $(CFLAGS) $(INC) -c -o $@ $< + $(CC) -c -o $@ $< %.o: %.c $(GENH) $(CC) $(CFLAGS) $(INC) -c -o $@ $< -- 1.7.5.2