141929a48fe188e7dac97b0a087d4ac4139c7605
[pcsx_rearmed.git] / Makefile
1 # Makefile for PCSX ReARMed
2
3 TARGET = pcsx
4
5 # default CFLAGS go here, so that config can override them
6 CFLAGS += -Wall -ggdb -Ifrontend -ffast-math
7 LDLIBS += -lpthread -ldl -lpng -lz -lm
8 ifndef DEBUG
9 CFLAGS += -O2 -DNDEBUG
10 endif
11 #DRC_DBG = 1
12 #PCNT = 1
13
14 all: config.mak $(TARGET)
15
16 ifneq ($(wildcard config.mak),)
17 config.mak: ./configure
18         @echo $@ is out-of-date, running configure
19         @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
20 include config.mak
21 else
22 config.mak:
23         @echo "Please run ./configure before running make!"
24         @exit 1
25 endif
26 -include Makefile.local
27
28 # core
29 OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \
30         libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \
31         libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
32         libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \
33         libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
34         libpcsxcore/sio.o libpcsxcore/socket.o libpcsxcore/spu.o
35 OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
36 ifeq "$(ARCH)" "arm"
37 OBJS += libpcsxcore/gte_arm.o
38 endif
39 ifeq "$(HAVE_NEON)" "1"
40 OBJS += libpcsxcore/gte_neon.o
41 endif
42 libpcsxcore/cdrom.o libpcsxcore/misc.o: CFLAGS += -Wno-pointer-sign
43 libpcsxcore/misc.o libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
44
45 # dynarec
46 ifeq "$(USE_DYNAREC)" "1"
47 OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_arm.o
48 OBJS += libpcsxcore/new_dynarec/pcsxmem.o
49 endif
50 OBJS += libpcsxcore/new_dynarec/emu_if.o
51 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c \
52         libpcsxcore/new_dynarec/pcsxmem_inline.c
53 libpcsxcore/new_dynarec/new_dynarec.o: CFLAGS += -Wno-all -Wno-pointer-sign
54 ifdef DRC_DBG
55 libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
56 CFLAGS += -DDRC_DBG
57 endif
58 ifeq "$(DRC_CACHE_BASE)" "1"
59 libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
60 endif
61
62 # spu
63 OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
64         plugins/dfsound/registers.o plugins/dfsound/spu.o
65 plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
66         plugins/dfsound/xa.c
67 ifeq "$(ARCH)" "arm"
68 OBJS += plugins/dfsound/arm_utils.o
69 endif
70 ifeq "$(USE_OSS)" "1"
71 plugins/dfsound/%.o: CFLAGS += -DUSEOSS
72 OBJS += plugins/dfsound/oss.o
73 endif
74 ifeq "$(USE_ALSA)" "1"
75 plugins/dfsound/%.o: CFLAGS += -DUSEALSA
76 OBJS += plugins/dfsound/alsa.o
77 LDLIBS += -lasound
78 endif
79 ifeq "$(USE_NO_SOUND)" "1"
80 OBJS += plugins/dfsound/nullsnd.o
81 endif
82
83 # gpu
84 OBJS += plugins/gpulib/gpu.o
85 ifeq "$(HAVE_NEON)" "1"
86 OBJS += plugins/gpulib/cspace_neon.o
87 OBJS += plugins/gpu_neon/psx_gpu_if.o plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
88 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
89 plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
90 else
91 OBJS += plugins/gpulib/cspace.o
92 # note: code is not safe for strict-aliasing? (Castlevania problems)
93 plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
94 plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
95 OBJS += plugins/dfxvideo/gpulib_if.o
96 endif
97 ifdef X11
98 LDLIBS += -lX11 `sdl-config --libs`
99 OBJS += plugins/gpulib/vout_sdl.o
100 plugins/gpulib/vout_sdl.o: CFLAGS += `sdl-config --cflags`
101 else
102 OBJS += plugins/gpulib/vout_pl.o
103 endif
104
105 # cdrcimg
106 OBJS += plugins/cdrcimg/cdrcimg.o
107
108 # dfinput
109 OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
110
111 # gui
112 OBJS += frontend/main.o frontend/plugin.o
113 OBJS += frontend/plugin_lib.o frontend/common/readpng.o
114 OBJS += frontend/common/fonts.o frontend/linux/plat.o
115 ifeq "$(PLATFORM)" "maemo"
116 OBJS += maemo/hildon.o maemo/main.o
117 maemo/%.o: maemo/%.c
118 else
119 OBJS += frontend/menu.o frontend/linux/in_evdev.o
120 OBJS += frontend/common/input.o frontend/linux/xenv.o
121
122 ifeq "$(PLATFORM)" "generic"
123 OBJS += frontend/plat_dummy.o
124 endif
125 ifeq "$(PLATFORM)" "pandora"
126 OBJS += frontend/linux/fbdev.o
127 OBJS += frontend/plat_omap.o
128 OBJS += frontend/plat_pandora.o
129 endif
130 ifeq "$(PLATFORM)" "caanoo"
131 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
132 OBJS += frontend/gp2x/in_gp2x.o frontend/warm/warm.o
133 endif
134 endif # !maemo
135
136 ifdef X11
137 frontend/%.o: CFLAGS += -DX11
138 OBJS += frontend/xkb.o
139 endif
140 ifdef PCNT
141 CFLAGS += -DPCNT
142 endif
143 ifeq "$(HAVE_TSLIB)" "1"
144 frontend/%.o: CFLAGS += -DHAVE_TSLIB
145 OBJS += frontend/pl_gun_ts.o
146 endif
147 frontend/%.o: CFLAGS += -DIN_EVDEV
148 frontend/menu.o: frontend/revision.h
149
150 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
151         $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
152
153 frontend/revision.h: FORCE
154         @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
155         @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
156         @rm $@_
157 .PHONY: FORCE
158
159 %.o: %.S
160         $(CC) $(CFLAGS) -c $^ -o $@
161
162 $(TARGET): $(OBJS)
163         $(CC) -o $@ $^ $(LDFLAGS) $(LDLIBS) -Wl,-Map=$@.map
164
165 clean: $(PLAT_CLEAN)
166         $(RM) $(TARGET) $(OBJS) $(TARGET).map
167
168 ifneq ($(PLUGINS),)
169 $(PLUGINS):
170         make -C plugins/gpulib/ clean
171         make -C $(dir $@)
172
173 clean_plugins:
174         make -C plugins/gpulib/ clean
175         for dir in $(PLUGINS) ; do \
176                 $(MAKE) -C $$(dirname $$dir) clean; done
177 endif
178
179 # ----------- release -----------
180
181 VER ?= $(shell git describe master)
182
183 ifeq "$(PLATFORM)" "pandora"
184 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
185
186 PLUGINS ?= plugins/spunull/spunull.so plugins/gpu-gles/gpu_gles.so \
187         plugins/gpu_unai/gpu_unai.so plugins/dfxvideo/gpu_peops.so
188
189 rel: pcsx $(PLUGINS) \
190                 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
191                 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
192         rm -rf out
193         mkdir -p out/plugins
194         cp -r $^ out/
195         sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
196         rm out/pcsx.pxml.templ
197         mv out/*.so out/plugins/
198         mv out/plugins/gpu_unai.so out/plugins/gpuPCSX4ALL.so
199         mv out/plugins/gpu_gles.so out/plugins/gpuGLES.so
200         mv out/plugins/gpu_peops.so out/plugins/gpuPEOPS.so
201         $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
202 endif
203
204 ifeq "$(PLATFORM)" "caanoo"
205 PLAT_CLEAN = caanoo_clean
206
207 caanoo_clean:
208         $(RM) frontend/320240/pollux_set
209
210 PLUGINS ?= plugins/spunull/spunull.so plugins/gpu_unai/gpu_unai.so \
211         plugins/gpu-gles/gpu_gles.so
212
213 rel: pcsx $(PLUGINS) \
214                 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
215                 frontend/320240/pcsxb.png frontend/320240/skin \
216                 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
217                 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
218                 frontend/320240/haptic_s.cfg \
219                 readme.txt COPYING
220         rm -rf out
221         mkdir -p out/pcsx_rearmed/plugins
222         cp -r $^ out/pcsx_rearmed/
223         mv out/pcsx_rearmed/gpu_unai.so out/pcsx_rearmed/gpuPCSX4ALL.so
224         mv out/pcsx_rearmed/gpu_gles.so out/pcsx_rearmed/gpuGLES.so
225         mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
226         mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
227         mv out/pcsx_rearmed/pcsx_rearmed.ini out/
228         mkdir out/pcsx_rearmed/lib/
229         cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
230         mkdir out/pcsx_rearmed/bios/
231         cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
232 endif