wiz port wip
[gpsp.git] / gp2x / Makefile
1 # gpSP makefile
2 # Gilead Kutnick - Exophase
3 # GP2X port(ion) - Z
4
5 # Global definitions
6
7 ifeq ($(WIZ),1)
8 PREFIX  = /opt/arm-openwiz-linux-gnu
9 CC        = $(PREFIX)/bin/arm-openwiz-linux-gnu-gcc
10 STRIP     = $(PREFIX)/bin/arm-openwiz-linux-gnu-strip
11 else
12 PREFIX  = /opt/open2x/gcc-4.1.1-glibc-2.3.6
13 CC        = $(PREFIX)/bin/arm-open2x-linux-gcc
14 STRIP     = $(PREFIX)/bin/arm-open2x-linux-strip
15 endif
16
17 OBJS      = main.o cpu.o memory.u video.o input.o sound.o gp2x.o gui.o        \
18             cheats.o zip.o cpu_threaded.z arm_stub.o video_blend.o            \
19             flush_cache.o warm.o sys_cacheflush.o
20 BIN       = gpsp.gpe 
21
22 # Platform specific definitions 
23
24 VPATH      += ..
25 CFLAGS     += -DARM_ARCH -DGP2X_BUILD
26 ifeq ($(WIZ),1)
27 CFLAGS     += -DWIZ_BUILD
28 endif
29 # NOTE: -funroll-loops will slow down compiling considerably
30 CFLAGS     += -O3 -std=c99 -msoft-float -funsigned-char -fno-common           \
31               -fno-builtin                                                    \
32
33 INCLUDES   = `$(PREFIX)/bin/sdl-config --cflags` -I$(PREFIX)/include
34 LIBS       = `$(PREFIX)/bin/sdl-config --libs`               \
35               -lm -ldl -lpthread -lz
36 ifneq ($(WIZ),1)
37 OBJS       += cpuctrl_mmsp2.o
38 LIBS       += -static
39 endif
40
41 CFLAGS     += -ggdb
42 LIBS       += -ggdb
43
44 # Compilation:
45
46 .SUFFIXES: .c
47
48 %.z: %.c
49         $(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $<
50
51 %.u: %.c
52         $(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $<
53
54 %.o: %.c
55         $(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $<
56
57 %.o: %.S
58         $(CC) $(ASFLAGS) $(INCLUDES) -c -o $@ $<
59
60 all:    $(OBJS)
61         $(CC) $(OBJS) $(LIBS) -o $(BIN)  
62 #       $(STRIP) $(BIN)
63
64 clean:
65         rm -f *.o *.u *.z $(BIN) 
66