summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorblacksirius <blacksirius@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-06-01 14:21:02 +0000
committerblacksirius <blacksirius@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-06-01 14:21:02 +0000
commit18ac48230ab17ee05ed4b717d858a20879f851f9 (patch)
treeb30e993c0a14a09fe70586570a97ed7d2a90a21c /Makefile.in
parent673164238ca72b5d90c6ad0df00f509d339a0621 (diff)
downloadhercules-18ac48230ab17ee05ed4b717d858a20879f851f9.tar.gz
hercules-18ac48230ab17ee05ed4b717d858a20879f851f9.tar.bz2
hercules-18ac48230ab17ee05ed4b717d858a20879f851f9.tar.xz
hercules-18ac48230ab17ee05ed4b717d858a20879f851f9.zip
removed the old obsolete Plugin system (commit 1/2)
- Removed @ Autoconf/make and CMake, VC Projects will be cleaned in a additional commit. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16203 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in19
1 files changed, 1 insertions, 18 deletions
diff --git a/Makefile.in b/Makefile.in
index 9664cc1b8..b8ebd7032 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -18,13 +18,6 @@ else
MAP_SQL_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
#####################################################################
.PHONY: sql \
@@ -33,7 +26,7 @@ endif
login_sql \
char_sql \
map_sql \
- tools plugins addons \
+ tools \
import \
clean help
@@ -62,9 +55,6 @@ map_sql: $(MAP_SQL_DEPENDS)
tools:
@$(MAKE) -C src/tool
-plugins addons: $(PLUGIN_DEPENDS)
- @$(MAKE) -C src/plugins
-
import:
# 1) create conf/import folder
# 2) add missing files
@@ -81,7 +71,6 @@ clean:
@$(MAKE) -C src/login $@
@$(MAKE) -C src/char $@
@$(MAKE) -C src/map $@
- @$(MAKE) -C src/plugins $@
@$(MAKE) -C src/tool $@
help:
@@ -94,8 +83,6 @@ help:
@echo "'char_sql' - builds char server (SQL version)"
@echo "'map_sql' - builds map server (SQL version)"
@echo "'tools' - builds all the tools in src/tools"
- @echo "'plugins' - builds all the plugins in src/plugins"
- @echo "'addons'"
@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'"
@@ -109,10 +96,6 @@ 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