diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-04 19:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-05-14 00:57:17 +0300 |
commit | aa32712281beb1c355e055384c01070183bb222a (patch) | |
tree | 6672a40510cd84e4a46bcb2c47199efb65d933a4 | |
parent | da1cea0fbd099de3ecd4c0d39a309c2526ca157e (diff) | |
download | hercules-aa32712281beb1c355e055384c01070183bb222a.tar.gz hercules-aa32712281beb1c355e055384c01070183bb222a.tar.bz2 hercules-aa32712281beb1c355e055384c01070183bb222a.tar.xz hercules-aa32712281beb1c355e055384c01070183bb222a.zip |
add install target to make file.
-rw-r--r-- | Makefile.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 75941b4fe..93af7b275 100644 --- a/Makefile.in +++ b/Makefile.in @@ -211,3 +211,10 @@ needs_mysql: no_plugins: @echo "Plugins disabled by the configure script" @exit 1 + +install: all + cp -f char-server ../server-data/ + cp -f login-server ../server-data/ + cp -f map-server ../server-data/ + mkdir ../server-data/plugins/ || true + cp -f plugins/*.so ../server-data/plugins/ |