summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-11-21 18:12:34 +0000
committerFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-11-21 18:12:34 +0000
commit2909c94a61ace412c15489ca12a969c5d4026e41 (patch)
treeda84e9a49a3c356a6e572dd9ce9056db838dd485 /Makefile.in
parentc2ca8110f6a3cab0171d32920b7a724d0c180068 (diff)
downloadhercules-2909c94a61ace412c15489ca12a969c5d4026e41.tar.gz
hercules-2909c94a61ace412c15489ca12a969c5d4026e41.tar.bz2
hercules-2909c94a61ace412c15489ca12a969c5d4026e41.tar.xz
hercules-2909c94a61ace412c15489ca12a969c5d4026e41.zip
* Added backward compatible target 'conf' to the Makefile.
(run ./configure again to update the Makefile) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11773 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in14
1 files changed, 11 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index a2b1cd150..2c1b0a95e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -20,8 +20,13 @@ else
endif
#####################################################################
-.PHONY: txt sql common common_sql login login_sql char char_sql map map_sql \
- ladmin tools converters plugins addons import save clean help depend
+.PHONY: txt sql conf \
+ common common_sql \
+ login login_sql \
+ char char_sql \
+ map map_sql \
+ ladmin tools converters plugins addons import save \
+ clean help
all: $(ALL_DEPENDS)
@@ -29,6 +34,8 @@ txt: common login char map import save
sql: $(SQL_DEPENDS)
+conf: import save
+
common:
@$(MAKE) -C src/common txt
@@ -96,7 +103,7 @@ clean:
@$(MAKE) -C src/txt-converter $@
help:
- @echo "most common targets are 'all' 'txt' 'sql' 'clean' 'help'"
+ @echo "most common targets are 'all' 'txt' 'sql' 'conf' 'clean' 'help'"
@echo "possible targets are:"
@echo "'common' - builds object files used in TXT servers"
@echo "'common_sql' - builds object files used in SQL servers"
@@ -118,6 +125,7 @@ help:
@echo " 'import' and 'save')"
@echo "'sql' - builds sql servers (targets 'common_sql' 'login_sql' 'char_sql'"
@echo " 'map_sql' 'import' and 'save')"
+ @echo "'conf' - builds templated folders/files (targets 'import' and 'save')"
@echo "'clean' - cleans builds and objects"
@echo "'help' - outputs this message"