summaryrefslogtreecommitdiff
path: root/Makefile.src.in
diff options
context:
space:
mode:
authorPatric Stout <truebrain@openttd.org>2018-04-29 14:12:23 +0200
committerPatric Stout <truebrain@openttd.org>2018-04-29 15:32:16 +0200
commit85adde74858161240860ed9e4bf67f9be838de45 (patch)
treec49c092551d1b9070afe61447c412b9f0f107a11 /Makefile.src.in
parent8d8b9a026a5915c2bf4591b74d79dfa1dcf791d8 (diff)
downloadopenttd-85adde74858161240860ed9e4bf67f9be838de45.tar.xz
Remove: PSP support
Diffstat (limited to 'Makefile.src.in')
-rw-r--r--Makefile.src.in7
1 files changed, 0 insertions, 7 deletions
diff --git a/Makefile.src.in b/Makefile.src.in
index a2069a2b7..21e93a5e2 100644
--- a/Makefile.src.in
+++ b/Makefile.src.in
@@ -264,14 +264,7 @@ endif
$(TTD): $(OBJS) $(CONFIG_CACHE_LINKER)
$(E) '$(STAGE) Linking $@'
-ifeq ($(OS), PSP)
- # Because of a bug in the PSP GCC tools, linking via CXX results
- # in total chaos and more problems then you can handle. So we need
- # CC to link OpenTTD for PSP
- $(Q)+$(CC_HOST) $(LDFLAGS) $(OBJS) $(LIBS) -o $@
-else
$(Q)+$(CXX_HOST) $(LDFLAGS) $(OBJS) $(LIBS) -o $@
-endif
ifdef STRIP
$(Q)$(STRIP) $@
endif