X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Flinux%2FMakefile;h=6aed56e105abd03a15c78a20167f20c1ecdf520d;hb=70357ce52578dee0dd3b3663902cf872c3d34258;hp=e3aac31f9741bdba56427dc93d9f778f70c16780;hpb=7d4906bfc93ced40a544534f433f06b00add52b0;p=picodrive.git diff --git a/platform/linux/Makefile b/platform/linux/Makefile index e3aac31..6aed56e 100644 --- a/platform/linux/Makefile +++ b/platform/linux/Makefile @@ -1,6 +1,7 @@ # settings -dprint = 1 +use_fame = 1 + # profile = 1 @@ -46,8 +47,13 @@ OBJS += ../../zlib/gzio.o ../../zlib/inffast.o ../../zlib/inflate.o ../../zlib/i # unzip OBJS += ../../unzip/unzip.o ../../unzip/unzip_stream.o # CPU cores +ifeq "$(use_fame)" "1" +DEFINC += -DEMU_F68K +OBJS += ../../cpu/fame/famec.o +else DEFINC += -DEMU_M68K OBJS += ../../cpu/musashi/m68kops.o ../../cpu/musashi/m68kcpu.o +endif # mz80 DEFINC += -D_USE_MZ80 OBJS += ../../cpu/mz80/mz80.o @@ -95,3 +101,7 @@ PicoDrive : $(OBJS) ../common/helix/helix_mp3_x86.a @echo $@ @$(GCC) $(COPT_COMMON) $(DEFINC) -c $< -o $@ # -mtune=arm940t -DEXTERNAL_YM2612 +../../cpu/fame/famec.o : ../../cpu/fame/famec.c + @echo $< + @$(GCC) $(COPT) $(DEFINC) -Wno-unused -c $< -o $@ +