diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-04 19:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-05-18 18:34:04 +0300 |
commit | 03bfeb473923fc28704f64e00070554cdc40b518 (patch) | |
tree | 1088f23475b624c8abf7106d5b6060a229e985a6 | |
parent | ca9c91eddcd64e2382094c4271ca35ef9196ae6b (diff) | |
download | hercules-03bfeb473923fc28704f64e00070554cdc40b518.tar.gz hercules-03bfeb473923fc28704f64e00070554cdc40b518.tar.bz2 hercules-03bfeb473923fc28704f64e00070554cdc40b518.tar.xz hercules-03bfeb473923fc28704f64e00070554cdc40b518.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 923254f9a..30e0ea792 100644 --- a/Makefile.in +++ b/Makefile.in @@ -218,3 +218,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/ |