X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fgp2x%2FMakefile;h=dcd453124e275fb13d7bf7eae8fb37ff9c9856e3;hb=8022f53da61b8e70420a3bac97250119bbe26457;hp=c6f9fe936524e76adcdb09d30d1bb4f1f9005ec4;hpb=69996cb7c62468cd97842e35bdd2b74006a28dba;p=picodrive.git diff --git a/platform/gp2x/Makefile b/platform/gp2x/Makefile index c6f9fe9..dcd4531 100644 --- a/platform/gp2x/Makefile +++ b/platform/gp2x/Makefile @@ -1,7 +1,7 @@ # you may or may not need to change this #devkit_path = x:/stuff/dev/devkitgp2x/ -CROSS = arm-linux- +export CROSS = arm-linux- #CROSS = $(devkit_path)bin/arm-linux- # settings @@ -31,8 +31,13 @@ else use_cyclone = 1 endif -DEFINC = -I../.. -I. -DARM -D__GP2X__ -D_UNZIP_SUPPORT # -DBENCHMARK -COPT_COMMON = -static -Wall -O2 -ftracer -fstrength-reduce -fomit-frame-pointer -fstrict-aliasing -ffast-math -Winline +DEFINC = -I../.. -I. -DARM -D__GP2X__ # -DBENCHMARK +COPT_COMMON = -static -Wall -Winline +ifeq ($(DEBUG),) +COPT_COMMON += -O2 -ftracer -fstrength-reduce -fomit-frame-pointer -fstrict-aliasing -ffast-math +else +COPT_COMMON += -ggdb +endif ifeq "$(profile)" "1" COPT_COMMON += -fprofile-generate endif @@ -53,7 +58,8 @@ OBJS += main.o menu.o gp2x.o usbjoy.o emu.o squidgehack.o cpuctrl.o OBJS += 940ctl.o # common -OBJS += ../common/menu.o ../common/fonts.o ../common/arm_utils.o ../common/readpng.o +OBJS += ../common/emu.o ../common/menu.o ../common/fonts.o ../common/arm_utils.o \ + ../common/readpng.o ../common/mp3_helix.o # Pico ifeq "$(amalgamate)" "1" @@ -106,8 +112,6 @@ OBJS += ../../zlib/gzio.o ../../zlib/inffast.o ../../zlib/inflate.o ../../zlib/i ../../zlib/deflate.o ../../zlib/crc32.o ../../zlib/adler32.o ../../zlib/zutil.o ../../zlib/compress.o # unzip OBJS += ../../unzip/unzip.o ../../unzip/unzip_stream.o -# mp3 -OBJS += mp3.o # debug ifeq "$(debug_cyclone)" "1" OBJS += ../../Pico/_cyclone_debug.o ../../cpu/musashi/m68kdasm.o @@ -133,7 +137,7 @@ endif all: PicoDrive.gpe -PicoDrive.gpe : $(OBJS) helix/helix_mp3.a +PicoDrive.gpe : $(OBJS) ../common/helix/helix_mp3.a @echo $@ @$(GCC) -o $@ $(COPT) $^ -lm -lpng -Wl,-Map=PicoDrive.map ifeq ($(DEBUG),) @@ -178,7 +182,7 @@ testrefr.gpe : test.o gp2x.o ../../Pico/sound/mix_asm.o : ../../Pico/sound/mix.s @echo $< @$(AS) $(ASOPT) $< -o $@ -../../Pico/misc_asm.o : ../../Pico/misc.s +../../Pico/misc_asm.o : ../../Pico/Misc.s @echo $< @$(AS) $(ASOPT) $< -o $@ ../../Pico/cd/pico_asm.o : ../../Pico/cd/Pico.s @@ -187,7 +191,7 @@ testrefr.gpe : test.o gp2x.o ../../Pico/cd/memory_asm.o : ../../Pico/cd/Memory.s @echo $< @$(AS) $(ASOPT) $< -o $@ -../../Pico/cd/misc_asm.o : ../../Pico/cd/misc.s +../../Pico/cd/misc_asm.o : ../../Pico/cd/Misc.s @echo $< @$(AS) $(ASOPT) $< -o $@ @@ -201,15 +205,21 @@ testrefr.gpe : test.o gp2x.o # build helix libs -helix/helix_mp3.a: - make -C helix +../common/helix/helix_mp3.a: + make -C ../common/helix + +readme.txt: ../../tools/textfilter ../base_readme.txt + ../../tools/textfilter ../base_readme.txt $@ GP2X + +../../tools/textfilter: ../../tools/textfilter.c + make -C ../../tools/ textfilter # cleanup clean: tidy - @$(RM) PicoDrive.gpe + $(RM) PicoDrive.gpe tidy: - @$(RM) $(OBJS) + $(RM) $(OBJS) # @make -C ../../cpu/Cyclone/proj -f Makefile.linux clean @@ -224,7 +234,7 @@ $(error need VER) endif endif -rel: PicoDrive.gpe code940/pico940.bin ../readme.txt config.txt PicoDrive.man.txt PicoDrive.png +rel: PicoDrive.gpe code940/pico940.bin readme.txt PicoDrive.man.txt PicoDrive.png zip -9 -j ../../PicoDrive_$(VER).zip $^ mmuhack.o zip -9 -r ../../PicoDrive_$(VER).zip skin -i \*.png -i \*.txt