diff options
author | tron <tron@openttd.org> | 2004-11-21 12:18:52 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2004-11-21 12:18:52 +0000 |
commit | 7fea17457dd1d87f1ab41fd84965dad8a4c3122e (patch) | |
tree | 01741352cb7938cba8cdf89b3f95316c56020709 | |
parent | 2a3969695b8b210eb288e7f39d85616da217f896 (diff) | |
download | openttd-7fea17457dd1d87f1ab41fd84965dad8a4c3122e.tar.xz |
(svn r726) The OpenTTD binary doesn't depend on the language files, so move this dependency to the all target
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -585,7 +585,7 @@ OSX:=OSX endif -all: endian.h $(UPDATECONFIG) $(TTD) $(OSX) $(endwarnings) +all: endian.h $(UPDATECONFIG) $(LANGS) $(TTD) $(OSX) $(endwarnings) endian.h: $(ENDIAN_CHECK) @# Check if system is LITTLE_ENDIAN or BIG_ENDIAN @@ -597,7 +597,7 @@ $(ENDIAN_CHECK): endian_check.c $(CC) $(BASECFLAGS) $(CDEFS) endian_check.c -o $@ -$(TTD): table/strings.h $(ttd_OBJS) $(LANGS) $(MAKE_CONFIG) +$(TTD): table/strings.h $(ttd_OBJS) $(MAKE_CONFIG) $(if $(VERBOSE),@echo '$(C_LINK) $@ $(TTDLDFLAGS) $(ttd_OBJS) $(LIBS)';,@echo 'Compiling and Linking $@';) \ $(C_LINK) $@ $(TTDLDFLAGS) $(ttd_OBJS) $(LIBS) $(VERBOSE_FILTER) |