diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-04-16 18:38:35 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-04-16 18:38:35 +0000 |
commit | ab7a624ef91b86c3cc9f30c6ab202b5a34b1f72b (patch) | |
tree | 3929150b4dc233afe940254fe4177bf74d2f43f1 | |
parent | d8512f028c60f65f2fa3523cdab0e92966e24177 (diff) |
BUILD : 1.7.8 (687) BUGS : N/A NOTES : Another heinz makefile.win32 patch :)
git-svn-id: svn://svn.anope.org/anope/trunk@687 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@514 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Makefile.win32 | 13 | ||||
-rw-r--r-- | version.log | 6 |
2 files changed, 12 insertions, 7 deletions
diff --git a/Makefile.win32 b/Makefile.win32 index f34327246..c39d56d38 100644 --- a/Makefile.win32 +++ b/Makefile.win32 @@ -13,7 +13,7 @@ include Makefile.inc.win32 ########################################################################### -all: src languages anopesmtp modules install +all: src languages tools modules install src: include\version.h include\sysconf.h include\language.h include\sysconf.h cd src && $(MAKE) && cd .. @@ -25,16 +25,17 @@ install: cd lang && $(MAKE) install && cd .. cd src && $(MAKE) install && cd .. cd src\modules && $(MAKE) install && cd .. - cd src\modules && $(MAKE) subs-install && cd .. + cd src\modules && $(MAKE) subs-install && cd .. -@echo --- -@echo Anope has been insalled successfully! + -@echo See docs/INSTALL for details on how to configure Anope for use. -@echo --- clean: - cd src && $(MAKE) spotless && cd .. cd lang && $(MAKE) spotless && cd .. - -@erase *.exe version.h *.obj + cd src && $(MAKE) spotless && cd .. cd src\modules && $(MAKE) spotless && cd ..\.. + -@erase *.exe version.h *.obj spotless: cd lang && $(MAKE) spotless && cd .. @@ -131,8 +132,8 @@ dist: languages: FRC cd lang && $(MAKE) && cd .. -anopesmtp: FRC - $(CC) src\tools\anopesmtp.c /link wsock32.lib $(LFLAGS) +tools: FRC + cd src\tools && $(MAKE) && cd ..\.. modules: FRC cd src\modules && $(MAKE) && cd ..\.. diff --git a/version.log b/version.log index cbc450bf8..14e1c6e5f 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="8" -VERSION_BUILD="686" +VERSION_BUILD="687" # $Log$ # +# BUILD : 1.7.8 (687) +# BUGS : N/A +# NOTES : Another heinz makefile.win32 patch :) +# # BUILD : 1.7.8 (686) # BUGS : N/A # NOTES : Applied small makefile patch for win32 |