1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 10:13:14 +02:00

BUILD : 1.7.15 (1161) BUGS : 606 NOTES : Fixed Makefile.win32 to fix a typo and nmake clean (it now uses spotless)

git-svn-id: svn://svn.anope.org/anope/trunk@1161 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@883 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-09-29 16:29:46 +00:00
parent 0d787aed6c
commit c565a28c43
3 changed files with 10 additions and 11 deletions
+2
View File
@@ -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]
+3 -10
View File
@@ -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
###########################################################################
+5 -1
View File
@@ -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