gpu_neon/psx_gpu: remove unused psx_gpu_alt
[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
d84e3767 24LDFLAGS += -lpthread -ldl -lpng -lz -lm
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
d84e3767 37ASFLAGS += -mcpu=arm926ej-s -mfloat-abi=softfp
a80ae4a0 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
3a721c1f 84ifeq "$(ARCH)" "arm"
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
ee318a53 98OBJS += plugins/gpu_neon/gpu.o
2ef486ee 99# note: code is not safe for strict-aliasing? (Castlevania problems)
ee318a53 100plugins/gpu_neon/peops_if.o: CFLAGS += -fno-strict-aliasing
101plugins/gpu_neon/peops_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
102OBJS += plugins/gpu_neon/peops_if.o
b60f2812 103ifdef X11
ee318a53 104LDFLAGS += -lX11 `sdl-config --libs`
105OBJS += plugins/gpu_neon/vout_sdl.o
106plugins/gpu_neon/vout_sdl.o: CFLAGS += `sdl-config --cflags`
b60f2812 107else
ee318a53 108OBJS += plugins/gpu_neon/vout_fb.o
b60f2812 109endif
e0c692d9 110
47bf65ab 111# cdrcimg
47bf65ab 112OBJS += plugins/cdrcimg/cdrcimg.o
e906c010 113
384f5f43 114# dfinput
4c08b9e7 115OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
384f5f43 116
80c2304e 117# gui
29a8c4f3 118OBJS += frontend/main.o frontend/plugin.o
76f7048e 119OBJS += frontend/plugin_lib.o frontend/common/readpng.o
120OBJS += frontend/common/fonts.o frontend/linux/plat.o
e0c692d9 121ifeq "$(USE_GTK)" "1"
122OBJS += maemo/hildon.o maemo/main.o
123maemo/%.o: maemo/%.c
124else
55b0eeea 125OBJS += frontend/menu.o frontend/linux/in_evdev.o
76f7048e 126OBJS += frontend/common/input.o frontend/linux/oshide.o
55b0eeea 127
128ifeq "$(PLATFORM)" "pandora"
129frontend/%.o: CFLAGS += -DVOUT_FBDEV
130OBJS += frontend/linux/fbdev.o
ccf51908 131OBJS += frontend/plat_omap.o
55b0eeea 132OBJS += frontend/plat_pandora.o
133else
134ifeq "$(PLATFORM)" "caanoo"
faf2b2aa 135OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
221be40d 136OBJS += frontend/gp2x/in_gp2x.o frontend/warm/warm.o
ccf51908 137else
138OBJS += frontend/plat_dummy.o
a327967e 139endif
55b0eeea 140endif
141
e0c692d9 142endif # !USE_GTK
a80ae4a0 143
144ifeq "$(HAVE_NEON)" "1"
145OBJS += frontend/cspace_neon.o
146else
147OBJS += frontend/cspace.o
e0c692d9 148endif
447783f8 149ifdef X11
150frontend/%.o: CFLAGS += -DX11
151OBJS += frontend/xkb.o
152endif
72228559 153ifdef PCNT
154CFLAGS += -DPCNT
155endif
4c08b9e7 156ifndef NO_TSLIB
157frontend/%.o: CFLAGS += -DHAVE_TSLIB
158OBJS += frontend/pl_gun_ts.o
159endif
59774ed0 160%.o: ASFLAGS += --defsym HAVE_ARMV7=$(HAVE_ARMV7)
ab948f7e 161frontend/%.o: CFLAGS += -DIN_EVDEV
3c70c47b 162frontend/menu.o: frontend/revision.h
163
59774ed0 164libpcsxcore/gte_nf.o: libpcsxcore/gte.c
165 $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
166
3c70c47b 167frontend/revision.h: FORCE
168 @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
169 @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
170 @rm $@_
171.PHONY: FORCE
172
80c2304e 173
174$(TARGET): $(OBJS)
f95a77f7 175 $(CC) -o $@ $^ $(LDFLAGS) -Wl,-Map=$@.map
80c2304e 176
59f1c85c 177PLUGINS ?= plugins/spunull/spunull.so plugins/gpu-gles/gpuGLES.so \
178 plugins/gpu_neon/gpu_unai.so plugins/gpu_neon/gpu_peops.so
0d464c77 179
ee78346e 180$(PLUGINS):
181 make -C $(dir $@)
f932e54b 182
59f1c85c 183clean: $(PLAT_CLEAN)
ee78346e 184 $(RM) $(TARGET) $(OBJS) $(TARGET).map
185
186clean_plugins:
187 for dir in $(PLUGINS) ; do \
188 $(MAKE) -C $$(dirname $$dir) clean; done
80c2304e 189
303ee308 190# ----------- release -----------
191
192PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
193
45d45c1e 194VER ?= $(shell git describe master)
303ee308 195
ee78346e 196rel: pcsx $(PLUGINS) \
9e0630ab 197 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
198 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
303ee308 199 rm -rf out
bbd837c6 200 mkdir -p out/plugins
303ee308 201 cp -r $^ out/
3938f69a 202 sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
203 rm out/pcsx.pxml.templ
bbd837c6 204 mv out/*.so out/plugins/
59f1c85c 205 mv out/plugins/gpu_unai.so out/plugins/gpuPCSX4ALL.so
206 mv out/plugins/gpu_peops.so out/plugins/gpuPEOPS.so
9e0630ab 207 $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c