diff options
author | 2007-12-17 16:33:33 +0000 | |
---|---|---|
committer | 2007-12-17 16:33:33 +0000 | |
commit | 8a8ccc594989d85f2277c48d3c158f7cee41d06b (patch) | |
tree | 821ddcb66109a2340909394308a4b348d4cb2a53 /makefile | |
parent | 7b77f1218624ea26dbb2efd85a19f795f5d4e02e (diff) |
Changes for MAME 0.121u1.mame0121u1
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 21 |
1 files changed, 14 insertions, 7 deletions
@@ -91,10 +91,11 @@ X86_PPC_DRC = 1 # uncomment one of the next lines to build a target-optimized build # NATIVE = 1 # ATHLON = 1 +# AMD64 = 1 # I686 = 1 # P4 = 1 # PM = 1 -# AMD64 = 1 +# CORE2 = 1 # G4 = 1 # G5 = 1 # CELL = 1 @@ -198,6 +199,11 @@ SUFFIX = at ARCH = -march=athlon endif +ifdef AMD64 +SUFFIX = 64 +ARCH = -march=athlon64 +endif + ifdef I686 SUFFIX = pp ARCH = -march=pentiumpro @@ -208,14 +214,14 @@ SUFFIX = p4 ARCH = -march=pentium4 endif -ifdef AMD64 -SUFFIX = 64 -ARCH = -march=athlon64 -endif - ifdef PM SUFFIX = pm -ARCH = -march=pentium3 -msse2 +ARCH = -march=pentium-m +endif + +ifdef CORE2 +SUFFIX = c2 +ARCH = -march=pentium-m -msse3 endif ifdef G4 @@ -237,6 +243,7 @@ ENDIAN = big endif + #------------------------------------------------- # form the name of the executable #------------------------------------------------- |