diff options
author | João Silva | 2017-08-16 04:20:50 +0100 |
---|---|---|
committer | João Silva | 2017-08-16 04:20:50 +0100 |
commit | b3711dfa5041d08490a8603fe221f267c0da290a (patch) | |
tree | c0a7c48d53a52641d6451aef386b7c2b73c0752a /Makefile | |
parent | c66c309a433f0e8bf9733177e18aa5c81e76cd5c (diff) | |
download | snes9x2005-b3711dfa5041d08490a8603fe221f267c0da290a.tar.gz snes9x2005-b3711dfa5041d08490a8603fe221f267c0da290a.tar.bz2 snes9x2005-b3711dfa5041d08490a8603fe221f267c0da290a.zip |
snes9x2010 Lagfix port and comment changes.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2,6 +2,7 @@ DEBUG = 0 PERF_TEST = 0 LOAD_FROM_MEMORY_TEST = 1 USE_BLARGG_APU = 0 +LAGFIX = 1 ifeq ($(platform),) platform = unix @@ -264,6 +265,10 @@ ifeq ($(PERF_TEST),1) FLAGS += -DPERF_TEST endif +ifeq ($(LAGFIX),1) + FLAGS += -DLAGFIX +endif + ifeq ($(platform), psp1) INCFLAGS += -I$(shell psp-config --pspsdk-path)/include endif @@ -283,7 +288,7 @@ ifneq (,$(findstring msvc,$(platform))) LD = link.exe else OBJOUT = -o - LINKOUT = -o + LINKOUT = -o LD = $(CC) endif |