summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortron <tron@openttd.org>2004-11-21 12:18:52 +0000
committertron <tron@openttd.org>2004-11-21 12:18:52 +0000
commit7fea17457dd1d87f1ab41fd84965dad8a4c3122e (patch)
tree01741352cb7938cba8cdf89b3f95316c56020709 /Makefile
parent2a3969695b8b210eb288e7f39d85616da217f896 (diff)
downloadopenttd-7fea17457dd1d87f1ab41fd84965dad8a4c3122e.tar.xz
(svn r726) The OpenTTD binary doesn't depend on the language files, so move this dependency to the all target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8c8acc682..276834956 100644
--- a/Makefile
+++ b/Makefile
@@ -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)