frontend: add touchscreen-as-buttons input code
[pcsx_rearmed.git] / Makefile
CommitLineData
b60f2812 1#CROSS_COMPILE=
4600ba03 2AS = $(CROSS_COMPILE)as
3GCC = $(CROSS_COMPILE)gcc
4CC = $(CROSS_COMPILE)gcc
5LD = $(CROSS_COMPILE)ld
6ifdef CC_OVERRIDE
7CC = $(CC_OVERRIDE)
8endif
80c2304e 9
a80ae4a0 10ARM926 ?= 0
11ARM_CORTEXA8 ?= 1
55b0eeea 12PLATFORM ?= pandora
a80ae4a0 13USE_OSS ?= 1
14#USE_ALSA = 1
15#DRC_DBG = 1
16#PCNT = 1
17TARGET = pcsx
18
19-include Makefile.local
20
4600ba03 21ARCH = $(shell $(GCC) -v 2>&1 | grep -i 'target:' | awk '{print $$2}' | awk -F '-' '{print $$1}')
c5061935 22
a80ae4a0 23CFLAGS += -Wall -ggdb -Ifrontend -ffast-math
bb5cf0fc 24LDFLAGS += -lz -lpthread -ldl -lpng
f95a77f7 25ifndef DEBUG
cfbd3c6e 26CFLAGS += -O2 -DNDEBUG
b60f2812 27endif
e0c692d9 28CFLAGS += $(EXTRA_CFLAGS)
29
a80ae4a0 30ifeq "$(ARCH)" "arm"
31ifeq "$(ARM_CORTEXA8)" "1"
4600ba03 32GCC_CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp
a80ae4a0 33ASFLAGS += -mcpu=cortex-a8 -mfpu=neon
34endif
35ifeq "$(ARM926)" "1"
4600ba03 36GCC_CFLAGS += -mcpu=arm926ej-s -mtune=arm926ej-s
a80ae4a0 37ASFLAGS += -mcpu=arm926ej-s
38endif
39endif
4600ba03 40CFLAGS += $(GCC_CFLAGS)
80c2304e 41
a80ae4a0 42# detect armv7 and NEON from the specified CPU
4600ba03 43HAVE_NEON = $(shell $(GCC) -E -dD $(GCC_CFLAGS) frontend/config.h | grep -q '__ARM_NEON__ 1' && echo 1)
44HAVE_ARMV7 = $(shell $(GCC) -E -dD $(GCC_CFLAGS) frontend/config.h | grep -q '__ARM_ARCH_7A__ 1' && echo 1)
de38f20e 45
80c2304e 46all: $(TARGET)
47
48# core
49OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \
3ebefe71 50 libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \
80c2304e 51 libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
52 libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \
53 libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
54 libpcsxcore/sio.o libpcsxcore/socket.o libpcsxcore/spu.o
59774ed0 55OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
56ifeq "$(ARCH)" "arm"
57OBJS += libpcsxcore/gte_arm.o
58endif
a80ae4a0 59ifeq "$(HAVE_NEON)" "1"
8cfbda97 60OBJS += libpcsxcore/gte_neon.o
61endif
ab948f7e 62libpcsxcore/cdrom.o libpcsxcore/misc.o: CFLAGS += -Wno-pointer-sign
63libpcsxcore/misc.o libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
64
f95a77f7 65# dynarec
7139f3c8 66ifndef NO_NEW_DRC
67OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_arm.o
7e605697 68OBJS += libpcsxcore/new_dynarec/pcsxmem.o
7139f3c8 69endif
70OBJS += libpcsxcore/new_dynarec/emu_if.o
b1be1eee 71libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c \
72 libpcsxcore/new_dynarec/pcsxmem_inline.c
ab948f7e 73libpcsxcore/new_dynarec/new_dynarec.o: CFLAGS += -Wno-all -Wno-pointer-sign
3eb78778 74ifdef DRC_DBG
75libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
76CFLAGS += -DDRC_DBG
77endif
f95a77f7 78
e906c010 79# spu
ee849648 80OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
81 plugins/dfsound/registers.o plugins/dfsound/spu.o
6d866bb7 82plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
83 plugins/dfsound/xa.c
a80ae4a0 84ifeq "$(HAVE_NEON)" "1"
b17618c0 85OBJS += plugins/dfsound/arm_utils.o
86endif
de38f20e 87ifeq "$(USE_OSS)" "1"
88plugins/dfsound/%.o: CFLAGS += -DUSEOSS
89OBJS += plugins/dfsound/oss.o
90endif
91ifeq "$(USE_ALSA)" "1"
92plugins/dfsound/%.o: CFLAGS += -DUSEALSA
93OBJS += plugins/dfsound/alsa.o
94LDFLAGS += -lasound
95endif
96
e906c010 97# gpu
2ef486ee 98# note: code is not safe for strict-aliasing? (Castlevania problems)
ab948f7e 99plugins/dfxvideo/%.o: CFLAGS += -fno-strict-aliasing
a96a5eb2 100OBJS += plugins/dfxvideo/gpu.o
6d866bb7 101plugins/dfxvideo/gpu.o: plugins/dfxvideo/fps.c plugins/dfxvideo/prim.c \
102 plugins/dfxvideo/gpu.c plugins/dfxvideo/soft.c
b60f2812 103ifdef X11
104LDFLAGS += -lX11 -lXv
105OBJS += plugins/dfxvideo/draw.o
106else
b60f2812 107OBJS += plugins/dfxvideo/draw_fb.o
108endif
e0c692d9 109
47bf65ab 110# cdrcimg
47bf65ab 111OBJS += plugins/cdrcimg/cdrcimg.o
e906c010 112
384f5f43 113# dfinput
4c08b9e7 114OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
384f5f43 115
80c2304e 116# gui
29a8c4f3 117OBJS += frontend/main.o frontend/plugin.o
76f7048e 118OBJS += frontend/plugin_lib.o frontend/common/readpng.o
119OBJS += frontend/common/fonts.o frontend/linux/plat.o
e0c692d9 120ifeq "$(USE_GTK)" "1"
121OBJS += maemo/hildon.o maemo/main.o
122maemo/%.o: maemo/%.c
123else
55b0eeea 124OBJS += frontend/menu.o frontend/linux/in_evdev.o
76f7048e 125OBJS += frontend/common/input.o frontend/linux/oshide.o
55b0eeea 126
127ifeq "$(PLATFORM)" "pandora"
128frontend/%.o: CFLAGS += -DVOUT_FBDEV
129OBJS += frontend/linux/fbdev.o
ccf51908 130OBJS += frontend/plat_omap.o
55b0eeea 131OBJS += frontend/plat_pandora.o
132else
133ifeq "$(PLATFORM)" "caanoo"
faf2b2aa 134OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
55b0eeea 135OBJS += frontend/warm/warm.o
ccf51908 136else
137OBJS += frontend/plat_dummy.o
a327967e 138endif
55b0eeea 139endif
140
e0c692d9 141endif # !USE_GTK
a80ae4a0 142
143ifeq "$(HAVE_NEON)" "1"
144OBJS += frontend/cspace_neon.o
145else
146OBJS += frontend/cspace.o
e0c692d9 147endif
447783f8 148ifdef X11
149frontend/%.o: CFLAGS += -DX11
150OBJS += frontend/xkb.o
151endif
72228559 152ifdef PCNT
153CFLAGS += -DPCNT
154endif
4c08b9e7 155ifndef NO_TSLIB
156frontend/%.o: CFLAGS += -DHAVE_TSLIB
157OBJS += frontend/pl_gun_ts.o
158endif
59774ed0 159%.o: ASFLAGS += --defsym HAVE_ARMV7=$(HAVE_ARMV7)
ab948f7e 160frontend/%.o: CFLAGS += -DIN_EVDEV
3c70c47b 161frontend/menu.o: frontend/revision.h
162
59774ed0 163libpcsxcore/gte_nf.o: libpcsxcore/gte.c
164 $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
165
3c70c47b 166frontend/revision.h: FORCE
167 @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
168 @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
169 @rm $@_
170.PHONY: FORCE
171
80c2304e 172
173$(TARGET): $(OBJS)
f95a77f7 174 $(CC) -o $@ $^ $(LDFLAGS) -Wl,-Map=$@.map
80c2304e 175
a80ae4a0 176PLUGINS ?= plugins/spunull/spunull.so plugins/gpu_unai/gpuPCSX4ALL.so \
7ca0ce80 177 plugins/gpu-gles/gpuGLES.so plugins/gpu_neon/gpu_neon.so
0d464c77 178
ee78346e 179$(PLUGINS):
180 make -C $(dir $@)
f932e54b 181
80c2304e 182clean:
ee78346e 183 $(RM) $(TARGET) $(OBJS) $(TARGET).map
184
185clean_plugins:
186 for dir in $(PLUGINS) ; do \
187 $(MAKE) -C $$(dirname $$dir) clean; done
80c2304e 188
303ee308 189# ----------- release -----------
190
191PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
192
45d45c1e 193VER ?= $(shell git describe master)
303ee308 194
ee78346e 195rel: pcsx $(PLUGINS) \
9e0630ab 196 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
197 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
303ee308 198 rm -rf out
bbd837c6 199 mkdir -p out/plugins
303ee308 200 cp -r $^ out/
3938f69a 201 sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
202 rm out/pcsx.pxml.templ
bbd837c6 203 mv out/*.so out/plugins/
7ca0ce80 204 mv out/plugins/gpu_neon.so out/plugins/gpuPEOPS2.so
9e0630ab 205 $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c