From bbba320911a86c0ee373f8297f80a2b82de22039 Mon Sep 17 00:00:00 2001 From: notaz Date: Mon, 5 Sep 2011 19:31:58 +0300 Subject: enable -Wall and fix warnings reported by it --- pandora/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'pandora') diff --git a/pandora/Makefile b/pandora/Makefile index 090cccb..a485146 100644 --- a/pandora/Makefile +++ b/pandora/Makefile @@ -14,10 +14,9 @@ BIN = gpsp # Platform specific definitions VPATH += .. ../arm -CFLAGS += -DARM_ARCH -DPND_BUILD -CFLAGS += -funsigned-char +CFLAGS += -DARM_ARCH -DPND_BUILD -Wall CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfloat-abi=softfp -ffast-math -CFLAGS += -fno-common -fno-builtin +CFLAGS += -fno-common CFLAGS += -ggdb CFLAGS += -O2 @@ -28,10 +27,12 @@ LIBS += -ldl -lpthread -lz # Compilation: +all: $(BIN) + %.o: %.S $(CC) $(CFLAGS) -c -o $@ $< -all: $(BIN) +cpu.o cpu_threaded.o: CFLAGS += -Wno-unused-variable -Wno-unused-label $(BIN): $(OBJS) $(CC) $(OBJS) $(LIBS) -o $(BIN) -- cgit v1.2.3