summaryrefslogtreecommitdiff
path: root/src/tool/Makefile.in
diff options
context:
space:
mode:
authorshennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-11-09 02:27:33 +0000
committershennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-11-09 02:27:33 +0000
commit9cb21bac409ae46c0f4aa12732579f4f24141278 (patch)
tree6765e1d816c0637f6176c55c2c17c825fc8b4da7 /src/tool/Makefile.in
parent9d695a9fec70d038b0edaa8e969e5002e713eb1f (diff)
downloadhercules-9cb21bac409ae46c0f4aa12732579f4f24141278.tar.gz
hercules-9cb21bac409ae46c0f4aa12732579f4f24141278.tar.bz2
hercules-9cb21bac409ae46c0f4aa12732579f4f24141278.tar.xz
hercules-9cb21bac409ae46c0f4aa12732579f4f24141278.zip
Fixed bugreport:6209 / Follow up r16867 : updated mapcache to write onto its proper map_cache.dat depending on the instance's #RENEWAL
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16884 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/tool/Makefile.in')
-rw-r--r--src/tool/Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tool/Makefile.in b/src/tool/Makefile.in
index 9d9a8668f..d72ef5405 100644
--- a/src/tool/Makefile.in
+++ b/src/tool/Makefile.in
@@ -4,7 +4,7 @@ COMMON_OBJ = ../common/obj_all/minicore.o ../common/obj_all/malloc.o \
../common/obj_all/utils.o ../common/obj_all/des.o ../common/obj_all/grfio.o
COMMON_H = ../common/core.h ../common/mmo.h \
../common/malloc.h ../common/showmsg.h ../common/strlib.h \
- ../common/utils.h ../common/cbasetypes.h ../common/des.h ../common/grfio.h
+ ../common/utils.h ../common/cbasetypes.h ../common/des.h ../common/grfio.h ../config/renewal.h
LIBCONFIG_OBJ = ../../3rdparty/libconfig/libconfig.o ../../3rdparty/libconfig/grammar.o \
../../3rdparty/libconfig/scanctx.o ../../3rdparty/libconfig/scanner.o ../../3rdparty/libconfig/strbuf.o
@@ -13,6 +13,8 @@ LIBCONFIG_H = ../../3rdparty/libconfig/libconfig.h ../../3rdparty/libconfig/gram
../../3rdparty/libconfig/strbuf.h ../../3rdparty/libconfig/wincompat.h
LIBCONFIG_INCLUDE = -I../../3rdparty/libconfig
+OTHER_H = ../config/renewal.h
+
MAPCACHE_OBJ = obj_all/mapcache.o
@SET_MAKE@
@@ -42,7 +44,7 @@ help:
obj_all:
-mkdir obj_all
-obj_all/%.o: %.c $(COMMON_H) $(LIBCONFIG_H)
+obj_all/%.o: %.c $(COMMON_H) $(OTHER_H) $(LIBCONFIG_H)
@echo " CC $<"
@@CC@ @CFLAGS@ $(LIBCONFIG_INCLUDE) @CPPFLAGS@ -c $(OUTPUT_OPTION) $<