gpsp/gp2x/Makefile

71 lines
1.6 KiB
Makefile
Raw Normal View History

# gpSP makefile
# Gilead Kutnick - Exophase
# GP2X port(ion) - Z
# Global definitions
2011-09-03 00:26:33 +02:00
PREFIX ?= /opt/open2x/gcc-4.1.1-glibc-2.3.6
CC = $(PREFIX)/bin/arm-open2x-linux-gcc
STRIP = $(PREFIX)/bin/arm-open2x-linux-strip
OBJS = main.o cpu.o memory.u video.o input.o sound.o gp2x.o gui.o \
2009-05-30 21:47:25 +02:00
cheats.o zip.o cpu_threaded.z arm_stub.o video_blend.o \
2009-06-23 11:28:13 +02:00
warm.o upscale_aspect.o
ifeq ($(WIZ),1)
2009-06-24 20:18:37 +02:00
OBJS += pollux_dpc_set.o
2009-06-23 11:28:13 +02:00
BIN = gpsp_wiz
else
BIN = gpsp_gp2x
endif
2011-09-03 00:26:33 +02:00
-include Makefile.local
# Platform specific definitions
VPATH += .. ../arm
CFLAGS += -DARM_ARCH -DGP2X_BUILD
2009-05-30 21:47:25 +02:00
ifeq ($(WIZ),1)
CFLAGS += -DWIZ_BUILD
endif
# NOTE: -funroll-loops will slow down compiling considerably
CFLAGS += -O3 -std=c99 -msoft-float -funsigned-char -fno-common \
-fno-builtin -Wall \
2009-05-21 17:34:34 +02:00
INCLUDES = `$(PREFIX)/bin/sdl-config --cflags` -I$(PREFIX)/include
LIBS = `$(PREFIX)/bin/sdl-config --libs` \
2009-05-30 21:47:25 +02:00
-lm -ldl -lpthread -lz
ifneq ($(WIZ),1)
LIBS += -static
endif
# Compilation:
.SUFFIXES: .c
all: $(BIN)
cpu.o cpu_threaded.z: CFLAGS += -Wno-unused-variable -Wno-unused-label
%.z: %.c
$(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $<
%.u: %.c
$(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $<
%.o: %.c
$(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $<
%.o: %.S
$(CC) $(ASFLAGS) $(INCLUDES) -c -o $@ $<
2009-06-05 16:36:30 +02:00
%.o: %.s
$(CC) $(ASFLAGS) $(INCLUDES) -c -o $@ $<
$(BIN): $(OBJS)
2009-06-23 11:28:13 +02:00
$(CC) $(OBJS) $(LIBS) -o $(BIN)
$(STRIP) $(BIN)
clean:
rm -f *.o *.u *.z $(BIN)