diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-04 19:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-14 18:38:25 +0300 |
commit | 3b7484e35f13f0fae321eeb1fd7705cd46aaec60 (patch) | |
tree | afe09f2765beebab94c7d4a508109526d492c0d7 | |
parent | 6d7de62af633a4d46ddff475e9e816863d765349 (diff) | |
download | hercules-3b7484e35f13f0fae321eeb1fd7705cd46aaec60.tar.gz hercules-3b7484e35f13f0fae321eeb1fd7705cd46aaec60.tar.bz2 hercules-3b7484e35f13f0fae321eeb1fd7705cd46aaec60.tar.xz hercules-3b7484e35f13f0fae321eeb1fd7705cd46aaec60.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 958f04175..5ff7a4263 100644 --- a/Makefile.in +++ b/Makefile.in @@ -194,3 +194,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/ |