X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=Makefile;h=e904128be48c90dfa5441e6e5e8c8648bce5bf60;hp=b544250618a5ab741025e4c20957897bbe655313;hb=22fa3f2b3d09f3694f938ca895d447a30ec96f25;hpb=4ea086f6049c3f2c286f1a4e1e23b5763629067a diff --git a/Makefile b/Makefile index b5442506..e904128b 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ # default stuff goes here, so that config can override TARGET = pcsx CFLAGS += -Wall -ggdb -Ifrontend -ffast-math -LDLIBS += -lpthread -lm +LDLIBS += -lpthread ifndef DEBUG CFLAGS += -O2 -DNDEBUG endif @@ -26,6 +26,7 @@ endif -include Makefile.local CC_LINK = $(CC) +LDFLAGS += $(MAIN_LDFLAGS) LDLIBS += $(MAIN_LDLIBS) # core @@ -127,38 +128,56 @@ OBJS += plugins/cdrcimg/cdrcimg.o # dfinput OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o -# gui -OBJS += frontend/main.o frontend/plugin.o -OBJS += frontend/common/readpng.o frontend/common/fonts.o -OBJS += frontend/linux/plat.o - +# frontend/gui ifeq "$(PLATFORM)" "generic" -OBJS += frontend/plat_sdl.o frontend/common/in_sdl.o +OBJS += frontend/libpicofe/in_sdl.o frontend/plat_sdl.o +OBJS += frontend/libpicofe/plat_dummy.o +OBJS += frontend/libpicofe/linux/in_evdev.o +USE_PLUGIN_LIB = 1 USE_FRONTEND = 1 endif ifeq "$(PLATFORM)" "pandora" -OBJS += frontend/linux/fbdev.o -OBJS += frontend/plat_omap.o frontend/linux/xenv.o -OBJS += frontend/plat_pandora.o +OBJS += frontend/libpicofe/pandora/plat.o +OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o +OBJS += frontend/libpicofe/linux/in_evdev.o +OBJS += frontend/plat_pandora.o frontend/plat_omap.o +USE_PLUGIN_LIB = 1 USE_FRONTEND = 1 endif ifeq "$(PLATFORM)" "caanoo" +OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o +OBJS += frontend/libpicofe/gp2x/soc_pollux.o +OBJS += frontend/libpicofe/linux/in_evdev.o OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o -OBJS += frontend/gp2x/in_gp2x.o frontend/warm/warm.o +libpcsxcore/new_dynarec/pcsxmem.o: CFLAGS += -DCUSTOM_MEMMAPS +USE_PLUGIN_LIB = 1 USE_FRONTEND = 1 endif ifeq "$(PLATFORM)" "maemo" OBJS += maemo/hildon.o maemo/main.o maemo/%.o: maemo/%.c -OBJS += frontend/plugin_lib.o +USE_PLUGIN_LIB = 1 endif ifeq "$(PLATFORM)" "libretro" OBJS += frontend/libretro.o +OBJS += frontend/linux/plat_mmap.o endif -ifeq "$(USE_FRONTEND)" "1" -OBJS += frontend/menu.o frontend/linux/in_evdev.o -OBJS += frontend/common/input.o + +ifeq "$(USE_PLUGIN_LIB)" "1" OBJS += frontend/plugin_lib.o +OBJS += frontend/libpicofe/linux/plat.o +OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o +ifeq "$(HAVE_NEON)" "1" +OBJS += frontend/libpicofe/arm/neon_scale2x.o +OBJS += frontend/libpicofe/arm/neon_eagle2x.o +frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB +frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB +endif +endif +ifeq "$(USE_FRONTEND)" "1" +OBJS += frontend/menu.o +OBJS += frontend/libpicofe/input.o +frontend/menu.o: frontend/libpicofe/menu.c ifeq "$(HAVE_TSLIB)" "1" frontend/%.o: CFLAGS += -DHAVE_TSLIB OBJS += frontend/pl_gun_ts.o @@ -174,9 +193,19 @@ endif ifdef PCNT CFLAGS += -DPCNT endif + +# misc +OBJS += frontend/main.o frontend/plugin.o + frontend/%.o: CFLAGS += -DIN_EVDEV frontend/menu.o frontend/main.o frontend/plat_sdl.o: frontend/revision.h +frontend/libpicofe/%.c: + @echo "libpicofe module is missing, please run:" + @echo "git submodule init && git submodule update" + @exit 1 + + libpcsxcore/gte_nf.o: libpcsxcore/gte.c $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS @@ -184,7 +213,6 @@ frontend/revision.h: FORCE @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_ @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@ @rm $@_ -.PHONY: FORCE %.o: %.S $(CC) $(CFLAGS) -c $^ -o $@ @@ -212,9 +240,11 @@ plugins_: clean_plugins: endif +.PHONY: all clean target_ plugins_ clean_plugins FORCE + # ----------- release ----------- -VER ?= $(shell git describe master) +VER ?= $(shell git describe HEAD) ifeq "$(PLATFORM)" "generic" OUT = pcsx_rearmed_$(VER)