X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=Makefile;h=b712718ba65c5f4d32e009bd8b195b1834e0e420;hp=28b3d7c57ccfd6a9564749ee0ff15ae46170b580;hb=47bf65ab6163fb70eb2ad309c9487229832bcaed;hpb=f95a77f74f9608f9c63780fee20fcc5255042ac3 diff --git a/Makefile b/Makefile index 28b3d7c5..b712718b 100644 --- a/Makefile +++ b/Makefile @@ -4,13 +4,16 @@ CC = $(CROSS_COMPILE)gcc LD = $(CROSS_COMPILE)ld CFLAGS += -ggdb -Ifrontend -LDFLAGS += -lz -lpthread -ldl +LDFLAGS += -lz -lpthread -ldl -lpng ifdef CROSS_COMPILE CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfloat-abi=softfp -ffast-math +ASFLAGS += -mcpu=cortex-a8 -mfpu=neon endif ifndef DEBUG -CFLAGS += -O2 +CFLAGS += -O2 # -DNDEBUG endif +#DRC_DBG = 1 +#PCNT = 1 TARGET = pcsx all: $(TARGET) @@ -23,9 +26,15 @@ OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \ libpcsxcore/sio.o libpcsxcore/socket.o libpcsxcore/spu.o # dynarec -OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_arm.o \ - libpcsxcore/new_dynarec/emu_if.o +ifndef NO_NEW_DRC +OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_arm.o +endif +OBJS += libpcsxcore/new_dynarec/emu_if.o libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c +ifdef DRC_DBG +libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64 +CFLAGS += -DDRC_DBG +endif # spu OBJS += plugins/dfsound/adsr.o plugins/dfsound/dma.o plugins/dfsound/oss.o plugins/dfsound/reverb.o \ @@ -38,19 +47,46 @@ ifdef X11 LDFLAGS += -lX11 -lXv OBJS += plugins/dfxvideo/draw.o else -CFLAGS += -D_MACGL # disables X in dfxvideo +plugins/dfxvideo/%.o: CFLAGS += -D_MACGL # disables X in dfxvideo OBJS += plugins/dfxvideo/draw_fb.o endif +# cdrcimg +plugins/cdrcimg/%.o: CFLAGS += -Wall +OBJS += plugins/cdrcimg/cdrcimg.o # gui OBJS += gui/Config.o gui/Plugin.o OBJS += frontend/main.o frontend/plugin.o frontend/plugin_lib.o -OBJS += frontend/linux/fbdev.o +OBJS += frontend/menu.o +OBJS += frontend/linux/fbdev.o frontend/linux/in_evdev.o +OBJS += frontend/linux/plat.o frontend/linux/oshide.o +OBJS += frontend/common/fonts.o frontend/common/input.o frontend/common/readpng.o +ifdef CROSS_COMPILE +OBJS += frontend/arm_utils.o +OBJS += frontend/plat_omap.o +else +OBJS += frontend/plat_dummy.o +endif +ifdef PCNT +CFLAGS += -DPCNT +endif +frontend/%.o: CFLAGS += -Wall -DIN_EVDEV +frontend/menu.o: frontend/revision.h + +frontend/revision.h: FORCE + @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_ + @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@ + @rm $@_ +.PHONY: FORCE + $(TARGET): $(OBJS) $(CC) -o $@ $^ $(LDFLAGS) -Wl,-Map=$@.map +spunull.so: plugins/spunull/spunull.c + $(CC) $(CFLAGS) -shared -fPIC -o $@ $^ + clean: $(RM) $(TARGET) $(OBJS)