summaryrefslogtreecommitdiff
path: root/pandora/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'pandora/Makefile')
-rw-r--r--pandora/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/pandora/Makefile b/pandora/Makefile
new file mode 100644
index 0000000..090cccb
--- /dev/null
+++ b/pandora/Makefile
@@ -0,0 +1,41 @@
+# gpSP makefile
+# Gilead Kutnick - Exophase
+# pandora port - notaz
+
+# Global definitions
+
+CC = $(CROSS_COMPILE)gcc
+
+OBJS = pnd.o main.o cpu.o memory.o video.o input.o sound.o gui.o \
+ cheats.o zip.o cpu_threaded.o arm_stub.o video_blend.o warm.o \
+ linux/fbdev.o linux/xenv.o
+BIN = gpsp
+
+# Platform specific definitions
+
+VPATH += .. ../arm
+CFLAGS += -DARM_ARCH -DPND_BUILD
+CFLAGS += -funsigned-char
+CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfloat-abi=softfp -ffast-math
+CFLAGS += -fno-common -fno-builtin
+CFLAGS += -ggdb
+CFLAGS += -O2
+
+# expecting to have PATH set up to get correct sdl-config first
+CFLAGS += `sdl-config --cflags`
+LIBS += `sdl-config --libs`
+LIBS += -ldl -lpthread -lz
+
+# Compilation:
+
+%.o: %.S
+ $(CC) $(CFLAGS) -c -o $@ $<
+
+all: $(BIN)
+
+$(BIN): $(OBJS)
+ $(CC) $(OBJS) $(LIBS) -o $(BIN)
+
+clean:
+ rm -f *.o $(BIN)
+