diff options
author | rubidium <rubidium@openttd.org> | 2010-08-14 14:50:06 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-08-14 14:50:06 +0000 |
commit | 7d11c392a4dca4d3f17c1c77976097df96c933e4 (patch) | |
tree | 70f8ec4296a11c428850c4ee8e872e1224f69a78 /configure | |
parent | 5933086e6177a671dc06ccaca0b07b5e9392cdd2 (diff) | |
download | openttd-7d11c392a4dca4d3f17c1c77976097df96c933e4.tar.xz |
(svn r20490) -Change: merge the extra GRF sources so updating them becomes a bit easier.
The (prebuilt) grf will still remain, so if you don't have NFORenum and GRFCodec it will still work.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -47,6 +47,7 @@ PREFIX="$PWD/bin" OBJS_DIR="$PWD/objs" BASE_SRC_OBJS_DIR="$OBJS_DIR" LANG_OBJS_DIR="$OBJS_DIR/lang" +GRF_OBJS_DIR="$OBJS_DIR/extra_grf" BIN_DIR="$PREFIX" SRC_DIR="$ROOT_DIR/src" LANG_DIR="$SRC_DIR/lang" @@ -160,10 +161,11 @@ else sort="$sort -u" fi -CONFIGURE_FILES="$ROOT_DIR/configure $ROOT_DIR/config.lib $ROOT_DIR/Makefile.in $ROOT_DIR/Makefile.lang.in $ROOT_DIR/Makefile.src.in $ROOT_DIR/Makefile.bundle.in" +CONFIGURE_FILES="$ROOT_DIR/configure $ROOT_DIR/config.lib $ROOT_DIR/Makefile.in $ROOT_DIR/Makefile.grf.in $ROOT_DIR/Makefile.lang.in $ROOT_DIR/Makefile.src.in $ROOT_DIR/Makefile.bundle.in" generate_main generate_lang +generate_grf generate_src check_path_characters |