diff options
author | truelight <truelight@openttd.org> | 2006-05-27 20:22:20 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2006-05-27 20:22:20 +0000 |
commit | d446915a45f29676c92e525a2be36ab48e76a71a (patch) | |
tree | 951912e011bc22386856797c6a6a25d4f3a0c05e /Makefile | |
parent | ff791261de20d26ef3c5df1e5079bb63abb07d81 (diff) | |
download | openttd-d446915a45f29676c92e525a2be36ab48e76a71a.tar.xz |
(svn r4993) -Fix: if 1 file is C++, link the whole project with g++
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -857,7 +857,7 @@ ifndef MACOSX_BUILD # OSX links in os/macosx/Makefile to handle universal binaries better $(TTD): $(OBJS) $(MAKE_CONFIG) @echo '===> Linking $@' - $(Q)$(CC) $(LDFLAGS) $(TTDLDFLAGS) $(OBJS) $(LIBS) -o $@ + $(Q)$(CXX) $(LDFLAGS) $(TTDLDFLAGS) $(OBJS) $(LIBS) -o $@ endif $(STRGEN): strgen/strgen.c endian_host.h |