diff options
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | Makefile.win32 | 13 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 10 insertions, 11 deletions
@@ -16,6 +16,8 @@ Provided by Anope Dev. <dev@anope.org> - 2006 09/23 F Restarting under Windows now works correctly [#589] 09/25 F Make now works with multiple threads. [ #00] 09/28 F We will now process UnrealIRCd's SVS(2)MODE messages. [#603] +09/29 F The 'nmake clean' on Windows now uses 'spotless' instead [ #00] +09/29 F Fixed a typo in Makefile.win32 [ #00] Provided by Trystan <trystan@nomadirc.net> - 2006 08/20 F Fixed several compiler warnings. [#586] diff --git a/Makefile.win32 b/Makefile.win32 index 21e687ef7..d0bec18f6 100644 --- a/Makefile.win32 +++ b/Makefile.win32 @@ -30,19 +30,10 @@ install: cd src\core && $(MAKE) install && cd .. cd src\tools && $(MAKE) install && cd .. -@echo --- - -@echo Anope has been insalled successfully! + -@echo Anope has been installed successfully! -@echo See docs\INSTALL for details on how to configure Anope for use. -@echo --- -clean: - cd src && $(MAKE) spotless && cd .. - cd src\modules && $(MAKE) spotless && cd .. - cd src\protocol && $(MAKE) spotless && cd .. - cd src\core && $(MAKE) spotless && cd .. - cd src\tools && $(MAKE) spotless && cd .. - cd lang && $(MAKE) spotless && cd .. - -@erase *.exe version.h *.obj - spotless: cd lang && $(MAKE) spotless && cd .. cd src && $(MAKE) spotless && cd .. @@ -61,6 +52,8 @@ mypasql: distclean: spotless +clean: spotless + ########################################################################### diff --git a/version.log b/version.log index c6c015336..470cd7e0f 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="15" VERSION_EXTRA="-svn" -VERSION_BUILD="1159" +VERSION_BUILD="1161" # $Log$ # +# BUILD : 1.7.15 (1161) +# BUGS : 606 +# NOTES : Fixed Makefile.win32 to fix a typo and `nmake clean` (it now uses spotless) +# # BUILD : 1.7.15 (1159) # BUGS : 603 # NOTES : we will now process UnrealIRCd's SVS(2)MODE messages |