diff options
author | twinaphex | 2021-02-14 22:30:24 +0100 |
---|---|---|
committer | twinaphex | 2021-02-14 22:30:24 +0100 |
commit | 218be8ef543fc25a603f20a2a3ee79fc7cdad611 (patch) | |
tree | d5a2246e5b2e6a305459a8fb1a1e2ec5e93a74f1 /Makefile | |
parent | a2f9a6f050f73df2c9ca4ee6964f9ac2ee10df26 (diff) | |
download | snes9x2005-218be8ef543fc25a603f20a2a3ee79fc7cdad611.tar.gz snes9x2005-218be8ef543fc25a603f20a2a3ee79fc7cdad611.tar.bz2 snes9x2005-218be8ef543fc25a603f20a2a3ee79fc7cdad611.zip |
(MVC) Embed MSVCRT runtime
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -572,6 +572,14 @@ else FLAGS += -O2 -DNDEBUG endif +ifneq (,$(findstring msvc,$(platform))) +ifeq ($(DEBUG),1) + FLAGS += -MTd +else + FLAGS += -MT +endif +endif + ifeq ($(PERF_TEST),1) FLAGS += -DPERF_TEST endif @@ -628,7 +636,7 @@ $(TARGET): $(OBJECTS) ifeq ($(STATIC_LINKING), 1) $(AR) rcs $@ $(OBJECTS) else - $(LD) $(fpic) $(SHARED) $(INCFLAGS) $(LDFLAGS) $(LINKOUT)$@ $(OBJECTS) $(LIBS) + $(LD) $(fpic) $(SHARED) $(LDFLAGS) $(LINKOUT)$@ $(OBJECTS) $(LIBS) endif clean: |