2009-05-21 17:48:31 +02:00
|
|
|
# gpSP makefile
|
|
|
|
# Gilead Kutnick - Exophase
|
|
|
|
# GP2X port(ion) - Z
|
|
|
|
|
|
|
|
# Global definitions
|
|
|
|
|
2009-05-30 21:47:25 +02:00
|
|
|
ifeq ($(WIZ),1)
|
|
|
|
PREFIX = /opt/arm-openwiz-linux-gnu
|
|
|
|
CC = $(PREFIX)/bin/arm-openwiz-linux-gnu-gcc
|
|
|
|
STRIP = $(PREFIX)/bin/arm-openwiz-linux-gnu-strip
|
|
|
|
else
|
2009-05-21 17:48:31 +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
|
2009-05-30 21:47:25 +02:00
|
|
|
endif
|
2009-05-21 17:48:31 +02:00
|
|
|
|
|
|
|
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 \
|
|
|
|
flush_cache.o warm.o sys_cacheflush.o
|
2009-05-21 17:48:31 +02:00
|
|
|
BIN = gpsp.gpe
|
|
|
|
|
|
|
|
# Platform specific definitions
|
|
|
|
|
|
|
|
VPATH += ..
|
|
|
|
CFLAGS += -DARM_ARCH -DGP2X_BUILD
|
2009-05-30 21:47:25 +02:00
|
|
|
ifeq ($(WIZ),1)
|
|
|
|
CFLAGS += -DWIZ_BUILD
|
|
|
|
endif
|
2009-05-21 17:48:31 +02:00
|
|
|
# NOTE: -funroll-loops will slow down compiling considerably
|
|
|
|
CFLAGS += -O3 -std=c99 -msoft-float -funsigned-char -fno-common \
|
|
|
|
-fno-builtin \
|
|
|
|
|
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)
|
|
|
|
OBJS += cpuctrl_mmsp2.o
|
|
|
|
LIBS += -static
|
|
|
|
endif
|
|
|
|
|
|
|
|
CFLAGS += -ggdb
|
|
|
|
LIBS += -ggdb
|
2009-05-21 17:48:31 +02:00
|
|
|
|
|
|
|
# Compilation:
|
|
|
|
|
|
|
|
.SUFFIXES: .c
|
|
|
|
|
|
|
|
%.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 $@ $<
|
|
|
|
|
|
|
|
all: $(OBJS)
|
|
|
|
$(CC) $(OBJS) $(LIBS) -o $(BIN)
|
2009-05-30 21:47:25 +02:00
|
|
|
# $(STRIP) $(BIN)
|
2009-05-21 17:48:31 +02:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o *.u *.z $(BIN)
|
|
|
|
|