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 | fc5afec2212e155acac2b5066cf3ac84d3bbf849 (patch) | |
tree | bb5bdd5ba271903297c729bff6dbfde2551263ab | |
parent | ad3c4a39f61c7e206bedb9ce26e5b190d45a1090 (diff) | |
download | openttd-fc5afec2212e155acac2b5066cf3ac84d3bbf849.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 $@ $< |