blob: d78aa631d4ac9d825171a8a20aba27f2befd4675 (
plain) (
tree)
|
|
@SET_MAKE@
HAVE_MYSQL=@HAVE_MYSQL@
ifeq ($(HAVE_MYSQL),yes)
ALL_DEPENDS=common_sql login_sql char_sql map_sql tools | import
SQL_DEPENDS=common_sql login_sql char_sql map_sql | import
COMMON_SQL_DEPENDS=mt19937ar libconfig
LOGIN_SQL_DEPENDS=mt19937ar libconfig common_sql
CHAR_SQL_DEPENDS=mt19937ar libconfig common_sql
MAP_SQL_DEPENDS=mt19937ar libconfig common_sql
TOOLS_DEPENDS=mt19937ar libconfig common_sql
else
ALL_DEPENDS=needs_mysql
SQL_DEPENDS=needs_mysql
COMMON_SQL_DEPENDS=needs_mysql
LOGIN_SQL_DEPENDS=needs_mysql
CHAR_SQL_DEPENDS=needs_mysql
MAP_SQL_DEPENDS=needs_mysql
TOOLS_DEPENDS=needs_mysql
endif
WITH_PLUGINS=@WITH_PLUGINS@
ifeq ($(WITH_PLUGINS),yes)
ALL_DEPENDS+=plugins
PLUGIN_DEPENDS=common_sql
else
PLUGIN_DEPENDS=no_plugins
endif
CC = @CC@
export CC
#####################################################################
.PHONY: sql \
common_sql \
mt19937ar \
login_sql \
char_sql \
map_sql \
tools \
plugins \
import \
test \
clean help
all: $(ALL_DEPENDS)
sql: $(SQL_DEPENDS)
common_sql: $(COMMON_SQL_DEPENDS)
@echo " MAKE $@"
@$(MAKE) -C src/common sql
mt19937ar:
@echo " MAKE $@"
@$(MAKE) -C 3rdparty/mt19937ar
libconfig:
@echo " MAKE $@"
@$(MAKE) -C 3rdparty/libconfig
login_sql: $(LOGIN_SQL_DEPENDS)
@echo " MAKE $@"
@$(MAKE) -C src/login sql
char_sql: $(CHAR_SQL_DEPENDS)
@echo " MAKE $@"
@$(MAKE) -C src/char
map_sql: $(MAP_SQL_DEPENDS)
@echo " MAKE $@"
@$(MAKE) -C src/map sql
tools: $(TOOLS_DEPENDS)
@echo " MAKE $@"
@$(MAKE) -C src/tool
test:
@echo " MAKE $@"
@$(MAKE) -C src/test
plugins: $(PLUGIN_DEPENDS)
@echo " MAKE $@"
@$(MAKE) -C src/plugins
import:
@# 1) create conf/import folder
@# 2) add missing files
@echo "building conf/import folder..."
@if test ! -d conf/import ; then mkdir conf/import ; fi
@for f in $$(ls conf/import-tmpl) ; do if test ! -e conf/import/$$f ; then cp conf/import-tmpl/$$f conf/import ; fi ; done
clean:
@$(MAKE) -C src/common $@
@$(MAKE) -C 3rdparty/mt19937ar $@
@$(MAKE) -C 3rdparty/libconfig $@
@$(MAKE) -C src/login $@
@$(MAKE) -C src/char $@
@$(MAKE) -C src/map $@
@$(MAKE) -C src/plugins $@
@$(MAKE) -C src/tool $@
@$(MAKE) -C src/test $@
distclean: clean
@-rm -f Makefile src/common/Makefile 3rdparty/mt19937ar/Makefile \
3rdparty/libconfig/Makefile src/char/Makefile src/login/Makefile \
src/map/Makefile src/plugins/Makefile src/tool/Makefile \
src/test/Makefile
help:
@echo "most common targets are 'all' 'sql' 'clean' 'plugins' 'help'"
@echo "possible targets are:"
@echo "'common_sql' - builds object files used in SQL servers"
@echo "'mt19937ar' - builds object file of Mersenne Twister MT19937"
@echo "'libconfig' - builds object files of libconfig"
@echo "'login_sql' - builds login server"
@echo "'char_sql' - builds char server"
@echo "'map_sql' - builds map server"
@echo "'tools' - builds all the tools in src/tools"
@echo "'import' - builds conf/import folder from the template conf/import-tmpl"
@echo "'all' - builds all the above targets"
@echo "'sql' - builds sql servers (targets 'common_sql' 'login_sql' 'char_sql'"
@echo " 'map_sql' and 'import')"
@echo "'test' - builds tests"
@echo "'clean' - cleans builds and objects"
@echo "'distclean' - cleans files generated by ./configure"
@echo "'help' - outputs this message"
#####################################################################
needs_mysql:
@echo "MySQL not found or disabled by the configure script"
@exit 1
no_plugins:
@echo "Plugins disabled by the configure script"
@exit 1
#####################################################################
# TODO
#install: conf/%.conf conf/%.txt
# @read -p "WARNING: This target does not work properly yet. Press Ctrl+C to cancel or Enter to continue."
# @mkdir -p /opt/hercules/bin/
# @mkdir -p /opt/hercules/etc/hercules/
# @mkdir -p /opt/hercules/var/log/hercules/
# @mv save /opt/hercules/etc/hercules/save
# @mv db /opt/hercules/etc/hercules/db
# @mv conf /opt/hercules/etc/hercules/conf
# @mv npc /opt/hercules/etc/hercules/npc
# @mv log/* /opt/hercules/var/log/hercules/
# @cp *-server /opt/hercules/bin/
# @ln -s /opt/hercules/etc/hercules/save/ /opt/hercules/bin/
# @ln -s /opt/hercules/etc/hercules/db/ /opt/hercules/bin/
# @ln -s /opt/hercules/etc/hercules/conf/ /opt/hercules/bin/
# @ln -s /opt/hercules/etc/hercules/npc/ /opt/hercules/bin/
# @ln -s /opt/hercules/var/log/hercules/ /opt/hercules/bin/log
#bin-clean:
# @rm /opt/hercules/bin/login-server
# @rm /opt/hercules/bin/char-server
# @rm /opt/hercules/bin/map-server
#uninstall: bin-clean
# @read -p "WARNING: This target does not work properly yet. Press Ctrl+C to cancel or Enter to continue."
# @rm /opt/hercules/bin/save
# @rm /opt/hercules/bin/db
# @rm /opt/hercules/bin/conf
# @rm /opt/hercules/bin/npc
# @rm /opt/hercules/bin/log
# @rm -rf /opt/hercules/etc/hercules
# @rm -rf /opt/hercules/var/log/hercules
|