diff options
author | Twinaphex | 2017-08-16 06:04:43 +0200 |
---|---|---|
committer | GitHub | 2017-08-16 06:04:43 +0200 |
commit | e2cffaea148cfb79cc3546642acb61245b96069e (patch) | |
tree | c0a7c48d53a52641d6451aef386b7c2b73c0752a /Makefile | |
parent | 4b70a73bcdb09e7f96a1e5696a512f4d33667f40 (diff) | |
parent | b3711dfa5041d08490a8603fe221f267c0da290a (diff) | |
download | snesemu-e2cffaea148cfb79cc3546642acb61245b96069e.tar.gz snesemu-e2cffaea148cfb79cc3546642acb61245b96069e.tar.bz2 snesemu-e2cffaea148cfb79cc3546642acb61245b96069e.zip |
Merge pull request #41 from jamsilva/master
SA1 fixes and Brunnis' lagfix port
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 |