diff options
author | Haru <haru@dotalux.com> | 2013-07-14 17:26:28 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-07-14 17:26:28 +0200 |
commit | 75359a9cd5faeda4156b56cfc63e2e553cae1785 (patch) | |
tree | a438f971219ab0116a740371382fb3d2281dc26b /src/login | |
parent | 3462ce6bf3efcc25eb3d4d449a45b89b64a3e70f (diff) | |
download | hercules-75359a9cd5faeda4156b56cfc63e2e553cae1785.tar.gz hercules-75359a9cd5faeda4156b56cfc63e2e553cae1785.tar.bz2 hercules-75359a9cd5faeda4156b56cfc63e2e553cae1785.tar.xz hercules-75359a9cd5faeda4156b56cfc63e2e553cae1785.zip |
Makefile error corrections and minor tweaks
- Fixed some variable names incorrectly entered as literals in target
names
- This fixes a build failure when trying to build any specific
sub-project directly from src/*/
- Removed an old svn-related command from the 'import' recipe
- This fixes the build failures when trying to run 'make tools' right
after 'make clean'
- Removed duplicate entries in the 'clean' recipe for map and login
servers
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/login')
-rw-r--r-- | src/login/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/login/Makefile.in b/src/login/Makefile.in index 543b31b93..7f5024ef8 100644 --- a/src/login/Makefile.in +++ b/src/login/Makefile.in @@ -35,7 +35,7 @@ sql: obj_sql login-server clean: @echo " CLEAN login" - @rm -rf *.o obj_sql ../../login-server@EXEEXT@ ../../login-server@EXEEXT@ + @rm -rf *.o obj_sql ../../login-server@EXEEXT@ help: @echo "possible targets are 'sql' 'all' 'clean' 'help'" @@ -76,8 +76,8 @@ obj_sql/%.o: %.c $(LOGIN_H) $(COMMON_H) $(MT19937AR_H) $(LIBCONFIG_H) ../common/obj_sql/common_sql.a: @$(MAKE) -C ../common sql -MT19937AR_OBJ: +$(MT19937AR_OBJ): @$(MAKE) -C ../../3rdparty/mt19937ar -LIBCONFIG_OBJ: +$(LIBCONFIG_OBJ): @$(MAKE) -C ../../3rdparty/libconfig |