X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=pandora%2FMakefile;h=a485146c0dded404272f83949c5a37e9c15c4308;hb=bbba320911a86c0ee373f8297f80a2b82de22039;hp=090cccba2f0f028bb4d88f1dedb99b617115e652;hpb=eb3668fc5dab138073cd4844208ac05b94086a4a;p=gpsp.git 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)