X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=Makefile;h=3ca1616f44405620cb29bfa65627422e439a89bb;hp=79a8f2deed2703ba7cb34c05b159b7373117ad20;hb=69af03a2c2fccc06cb836f42a10b490a48f29c15;hpb=7139f3c8070e9aa14fd36c2451d7f10079caa37a diff --git a/Makefile b/Makefile index 79a8f2de..3ca1616f 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) @@ -28,6 +31,10 @@ OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_ar 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 \ @@ -48,11 +55,21 @@ endif 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/omap.o 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 +endif +frontend/%.o: CFLAGS += -Wall -DIN_EVDEV $(TARGET): $(OBJS) $(CC) -o $@ $^ $(LDFLAGS) -Wl,-Map=$@.map +spunull.so: plugins/spunull/spunull.c + $(CC) $(CFLAGS) -shared -fPIC -o $@ $^ + clean: $(RM) $(TARGET) $(OBJS)