2009-05-21 17:48:31 +02:00
|
|
|
# gpSP makefile
|
|
|
|
# Gilead Kutnick - Exophase
|
|
|
|
|
|
|
|
# Global definitions
|
|
|
|
|
|
|
|
CC = gcc
|
|
|
|
STRIP = strip
|
|
|
|
AS = as
|
|
|
|
|
|
|
|
PREFIX = /usr
|
|
|
|
OBJS = main.o cpu.o memory.o video.o input.o sound.o \
|
|
|
|
cpu_threaded.o gui.o x86_stub.o cheats.o zip.o
|
|
|
|
BIN ?= gpsp.exe
|
|
|
|
|
|
|
|
# Platform specific definitions
|
|
|
|
|
|
|
|
VPATH += ..
|
2011-09-02 23:58:39 +02:00
|
|
|
CFLAGS += -DPC_BUILD -m32
|
2009-05-21 17:48:31 +02:00
|
|
|
INCLUDES = -I${PREFIX}/include `sdl-config --cflags`
|
2011-09-02 23:58:39 +02:00
|
|
|
LIBS = -L${PREFIX}/lib `sdl-config --libs` -mconsole -lz -m32
|
2009-05-21 17:48:31 +02:00
|
|
|
|
|
|
|
# Compilation:
|
|
|
|
|
|
|
|
.SUFFIXES: .c .S
|
|
|
|
|
|
|
|
%.o: %.c
|
|
|
|
${CC} ${CFLAGS} ${INCLUDES} -c -o $@ $<
|
|
|
|
|
|
|
|
%.o: %.S
|
2011-09-02 23:58:39 +02:00
|
|
|
${CC} ${CFLAGS} -c -o $@ $<
|
2009-05-21 17:48:31 +02:00
|
|
|
|
|
|
|
all: ${OBJS}
|
|
|
|
${CC} ${OBJS} ${LIBS} -o ${BIN}
|
|
|
|
${STRIP} ${BIN}
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o ${BIN}
|
|
|
|
|