diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-04 19:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-04-24 21:18:35 +0300 |
commit | b37b90ea465798083f8fa15bdc520fbf80ba37e2 (patch) | |
tree | d1d8679ef9512a840fc2a1a03a77bb7bf80cec98 | |
parent | a6313f81436008afbb86f54633d4e255d3f578fa (diff) | |
download | hercules-b37b90ea465798083f8fa15bdc520fbf80ba37e2.tar.gz hercules-b37b90ea465798083f8fa15bdc520fbf80ba37e2.tar.bz2 hercules-b37b90ea465798083f8fa15bdc520fbf80ba37e2.tar.xz hercules-b37b90ea465798083f8fa15bdc520fbf80ba37e2.zip |
add install target to make file.
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 923254f9a..009d071e0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -218,3 +218,11 @@ 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/ + cp -f mapcache ../server-data/ + mkdir ../server-data/plugins/ || true + cp -f plugins/*.so ../server-data/plugins/ |