diff options
author | peter1138 <peter1138@openttd.org> | 2008-01-25 21:09:12 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2008-01-25 21:09:12 +0000 |
commit | 18431dd9f8e5b4ea067d4ae7db42cfc10f30bc59 (patch) | |
tree | bb5bdd5ba271903297c729bff6dbfde2551263ab | |
parent | e214e03c280c77d5c84de615abe43d3a184ab2a1 (diff) | |
download | openttd-18431dd9f8e5b4ea067d4ae7db42cfc10f30bc59.tar.xz |
(svn r11986) -Fix: build system ignored changes to table/control_codes.h which require strgen to be rebuilt
-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 1d773d66c..1ba5c9048 100644 --- a/Makefile.lang.in +++ b/Makefile.lang.in @@ -36,7 +36,7 @@ RES := $(shell mkdir -p $(BIN_DIR)/lang ) all: table/strings.h $(LANGS) -strgen.o: $(SRC_DIR)/strgen/strgen.cpp endian_host.h +strgen.o: $(SRC_DIR)/strgen/strgen.cpp endian_host.h $(SRC_DIR)/table/control_codes.h $(E) '$(STAGE) Compiling $(<:$(SRC_DIR)/%.cpp=%.cpp)' $(Q)$(CXX_BUILD) $(CFLAGS_BUILD) -DSTRGEN -c -o $@ $< |