frontend: make text bg dark
[pcsx_rearmed.git] / Makefile
1 # Makefile for PCSX ReARMed
2
3 # default stuff goes here, so that config can override
4 TARGET = pcsx
5 CFLAGS += -Wall -ggdb -Ifrontend -ffast-math
6 LDLIBS += -lpthread
7 ifndef DEBUG
8 CFLAGS += -O2 -DNDEBUG
9 endif
10 CXXFLAGS += $(CFLAGS)
11 #DRC_DBG = 1
12 #PCNT = 1
13
14 all: config.mak target_ plugins_
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 CC_LINK = $(CC)
29 LDLIBS += $(MAIN_LDLIBS)
30
31 # core
32 OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \
33         libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \
34         libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
35         libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \
36         libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
37         libpcsxcore/sio.o libpcsxcore/socket.o libpcsxcore/spu.o
38 OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
39 ifeq "$(ARCH)" "arm"
40 OBJS += libpcsxcore/gte_arm.o
41 endif
42 ifeq "$(HAVE_NEON)" "1"
43 OBJS += libpcsxcore/gte_neon.o
44 endif
45 libpcsxcore/gte.o libpcsxcore/gte_nf.o: CFLAGS += -fno-strict-aliasing
46 libpcsxcore/cdrom.o libpcsxcore/misc.o: CFLAGS += -Wno-pointer-sign
47 libpcsxcore/misc.o libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
48
49 # dynarec
50 ifeq "$(USE_DYNAREC)" "1"
51 OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_arm.o
52 OBJS += libpcsxcore/new_dynarec/pcsxmem.o
53 endif
54 OBJS += libpcsxcore/new_dynarec/emu_if.o
55 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c \
56         libpcsxcore/new_dynarec/pcsxmem_inline.c
57 libpcsxcore/new_dynarec/new_dynarec.o: CFLAGS += -Wno-all -Wno-pointer-sign
58 ifdef DRC_DBG
59 libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
60 CFLAGS += -DDRC_DBG
61 endif
62 ifeq "$(DRC_CACHE_BASE)" "1"
63 libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
64 endif
65
66 # spu
67 OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
68         plugins/dfsound/registers.o plugins/dfsound/spu.o \
69         plugins/dfsound/out.o plugins/dfsound/nullsnd.o
70 plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
71         plugins/dfsound/xa.c
72 ifeq "$(ARCH)" "arm"
73 OBJS += plugins/dfsound/arm_utils.o
74 endif
75 ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
76 plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
77 OBJS += plugins/dfsound/oss.o
78 endif
79 ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
80 plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
81 OBJS += plugins/dfsound/alsa.o
82 LDLIBS += -lasound
83 endif
84 ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
85 plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
86 OBJS += plugins/dfsound/sdl.o
87 endif
88 ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
89 plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
90 OBJS += plugins/dfsound/pulseaudio.o
91 endif
92 ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
93 plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
94 endif
95
96 # builtin gpu
97 OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
98 ifeq "$(HAVE_NEON)" "1"
99 OBJS += plugins/gpulib/cspace_neon.o
100 else
101 OBJS += plugins/gpulib/cspace.o
102 endif
103 ifeq "$(BUILTIN_GPU)" "neon"
104 OBJS += plugins/gpu_neon/psx_gpu_if.o plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
105 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
106 plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
107 endif
108 ifeq "$(BUILTIN_GPU)" "peops"
109 # note: code is not safe for strict-aliasing? (Castlevania problems)
110 plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
111 plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
112 OBJS += plugins/dfxvideo/gpulib_if.o
113 endif
114 ifeq "$(BUILTIN_GPU)" "unai"
115 OBJS += plugins/gpulib/cspace.o
116 OBJS += plugins/gpu_unai/gpulib_if.o
117 ifeq "$(ARCH)" "arm"
118 OBJS += plugins/gpu_unai/gpu_arm.o
119 endif
120 plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3
121 CC_LINK = $(CXX)
122 endif
123
124 # cdrcimg
125 OBJS += plugins/cdrcimg/cdrcimg.o
126
127 # dfinput
128 OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
129
130 # misc
131 ifeq "$(HAVE_NEON)" "1"
132 OBJS += frontend/libpicofe/arm/neon_scale2x.o
133 OBJS += frontend/libpicofe/arm/neon_eagle2x.o
134 frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
135 frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
136 endif
137
138 # gui
139 OBJS += frontend/main.o frontend/plugin.o
140 OBJS += frontend/common/readpng.o frontend/common/fonts.o
141 OBJS += frontend/linux/plat.o
142
143 ifeq "$(PLATFORM)" "generic"
144 OBJS += frontend/plat_sdl.o frontend/common/in_sdl.o
145 USE_FRONTEND = 1
146 endif
147 ifeq "$(PLATFORM)" "pandora"
148 OBJS += frontend/linux/fbdev.o
149 OBJS += frontend/plat_omap.o frontend/linux/xenv.o
150 OBJS += frontend/plat_pandora.o
151 USE_FRONTEND = 1
152 endif
153 ifeq "$(PLATFORM)" "caanoo"
154 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
155 OBJS += frontend/gp2x/in_gp2x.o frontend/warm/warm.o
156 libpcsxcore/new_dynarec/pcsxmem.o: CFLAGS += -DCUSTOM_MEMMAPS
157 USE_FRONTEND = 1
158 endif
159 ifeq "$(PLATFORM)" "maemo"
160 OBJS += maemo/hildon.o maemo/main.o
161 maemo/%.o: maemo/%.c
162 OBJS += frontend/plugin_lib.o
163 endif
164 ifeq "$(PLATFORM)" "libretro"
165 OBJS += frontend/libretro.o
166 endif
167 ifeq "$(USE_FRONTEND)" "1"
168 OBJS += frontend/menu.o frontend/linux/in_evdev.o
169 OBJS += frontend/common/input.o
170 OBJS += frontend/plugin_lib.o
171 ifeq "$(HAVE_TSLIB)" "1"
172 frontend/%.o: CFLAGS += -DHAVE_TSLIB
173 OBJS += frontend/pl_gun_ts.o
174 endif
175 else
176 CFLAGS += -DNO_FRONTEND
177 endif
178
179 ifdef X11
180 frontend/%.o: CFLAGS += -DX11
181 OBJS += frontend/xkb.o
182 endif
183 ifdef PCNT
184 CFLAGS += -DPCNT
185 endif
186 frontend/%.o: CFLAGS += -DIN_EVDEV
187 frontend/menu.o frontend/main.o frontend/plat_sdl.o: frontend/revision.h
188
189 frontend/libpicofe/arm/neon_scale2x.S frontend/libpicofe/menu.c:
190         @echo "libpicofe module is missing, please run:"
191         @echo "git submodule init && git submodule update"
192         @exit 1
193
194
195 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
196         $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
197
198 frontend/revision.h: FORCE
199         @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
200         @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
201         @rm $@_
202
203 %.o: %.S
204         $(CC) $(CFLAGS) -c $^ -o $@
205
206 target_: $(TARGET)
207
208 $(TARGET): $(OBJS)
209         $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) -Wl,-Map=$@.map
210
211 clean: $(PLAT_CLEAN) clean_plugins
212         $(RM) $(TARGET) $(OBJS) $(TARGET).map
213
214 ifneq ($(PLUGINS),)
215 plugins_: $(PLUGINS)
216
217 $(PLUGINS):
218         make -C $(dir $@)
219
220 clean_plugins:
221         make -C plugins/gpulib/ clean
222         for dir in $(PLUGINS) ; do \
223                 $(MAKE) -C $$(dirname $$dir) clean; done
224 else
225 plugins_:
226 clean_plugins:
227 endif
228
229 .PHONY: all clean target_ plugins_ clean_plugins FORCE
230
231 # ----------- release -----------
232
233 VER ?= $(shell git describe HEAD)
234
235 ifeq "$(PLATFORM)" "generic"
236 OUT = pcsx_rearmed_$(VER)
237
238 rel: pcsx $(PLUGINS) \
239                 frontend/pandora/skin readme.txt COPYING
240         rm -rf $(OUT)
241         mkdir -p $(OUT)/plugins
242         mkdir -p $(OUT)/bios
243         cp -r $^ $(OUT)/
244         mv $(OUT)/*.so* $(OUT)/plugins/
245         zip -9 -r $(OUT).zip $(OUT)
246 endif
247
248 ifeq "$(PLATFORM)" "pandora"
249 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
250
251 rel: pcsx $(PLUGINS) \
252                 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
253                 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
254         rm -rf out
255         mkdir -p out/plugins
256         cp -r $^ out/
257         sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
258         rm out/pcsx.pxml.templ
259         mv out/*.so out/plugins/
260         $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
261 endif
262
263 ifeq "$(PLATFORM)" "caanoo"
264 PLAT_CLEAN = caanoo_clean
265
266 caanoo_clean:
267         $(RM) frontend/320240/pollux_set
268
269 rel: pcsx $(PLUGINS) \
270                 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
271                 frontend/320240/pcsxb.png frontend/320240/skin \
272                 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
273                 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
274                 frontend/320240/haptic_s.cfg \
275                 readme.txt COPYING
276         rm -rf out
277         mkdir -p out/pcsx_rearmed/plugins
278         cp -r $^ out/pcsx_rearmed/
279         mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
280         mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
281         mv out/pcsx_rearmed/pcsx_rearmed.ini out/
282         mkdir out/pcsx_rearmed/lib/
283         cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
284         mkdir out/pcsx_rearmed/bios/
285         cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
286 endif