diff options
author | aliaspider | 2015-09-21 06:26:11 +0100 |
---|---|---|
committer | aliaspider | 2015-09-21 06:26:11 +0100 |
commit | e9676240dbfb9a86747fc2d00a56c184b80686a8 (patch) | |
tree | aee4b7d5b83e68b52eb1f4384620bc77a8d6ec8a /Makefile | |
parent | 8f0b31757a59fca623ed403c26b1529387588d4b (diff) | |
download | snes9x2005-e9676240dbfb9a86747fc2d00a56c184b80686a8.tar.gz snes9x2005-e9676240dbfb9a86747fc2d00a56c184b80686a8.tar.bz2 snes9x2005-e9676240dbfb9a86747fc2d00a56c184b80686a8.zip |
change library name when compiled with USE_BLARGG_APU=1
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -34,7 +34,12 @@ else ifneq ($(findstring MINGW,$(shell uname -a)),) system_platform = win endif +ifeq($(USE_BLARGG_APU), 1) +TARGET_NAME := catsfc_plus +else TARGET_NAME := catsfc +endif + DEFS := LIBM := -lm |