diff options
author | rubidium <rubidium@openttd.org> | 2009-07-13 14:29:58 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-07-13 14:29:58 +0000 |
commit | 2956bad7fac61fd3535fc1059295c1c3ec05ffd7 (patch) | |
tree | 0aff9ec1a395eb704acb575f86854fa49bee119e | |
parent | 95c7993451a8d76b3bd3ec0c4844401e2a7729f0 (diff) | |
download | openttd-2956bad7fac61fd3535fc1059295c1c3ec05ffd7.tar.xz |
(svn r16810) -Fix (r16115): strgen didn't get rebuild when table/strgen_tables.h was changed.
-rw-r--r-- | Makefile.lang.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.lang.in b/Makefile.lang.in index 18db5a613..3284c955c 100644 --- a/Makefile.lang.in +++ b/Makefile.lang.in @@ -34,7 +34,7 @@ RES := $(shell mkdir -p $(BIN_DIR)/lang ) all: table/strings.h $(LANGS) -strgen.o: $(SRC_DIR)/strgen/strgen.cpp endian_host.h $(SRC_DIR)/table/control_codes.h +strgen.o: $(SRC_DIR)/strgen/strgen.cpp endian_host.h $(SRC_DIR)/table/control_codes.h $(SRC_DIR)/table/strgen_tables.h $(E) '$(STAGE) Compiling $(<:$(SRC_DIR)/%.cpp=%.cpp)' $(Q)$(CXX_BUILD) $(CFLAGS_BUILD) -DSTRGEN -c -o $@ $< |