mirror of
https://github.com/anope/anope.git
synced 2026-07-01 23:06:38 +02:00
BUILD : 1.7.14 (1062) BUGS : NOTES : Fixed the makefiles to not recompile the core if nothing changed, and to not always re-link all modules if not needed
git-svn-id: svn://svn.anope.org/anope/trunk@1062 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@786 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
f191314c0f
commit
f4baaed86c
@@ -32,6 +32,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006
|
||||
06/18 F Removed legacy my_vsnprintf code. [#496]
|
||||
06/18 F HOP cannot remove VOPs anymore to be consitent with adding. [#525]
|
||||
06/18 F Moduledata was cleared before calling AnopeFini. [#523]
|
||||
06/20 F Make does not recompile everything even on no change anymore. [ #00]
|
||||
|
||||
Provided by ThaPrince <jon@vile.com> - 2006
|
||||
05/19 A Plexus 3 support. [ #00]
|
||||
|
||||
+3
-2
@@ -37,10 +37,10 @@ install: all
|
||||
fi
|
||||
|
||||
clean:
|
||||
rm -f $(LANGOBJS) langcomp
|
||||
rm -f $(LANGOBJS) langcomp language.h
|
||||
|
||||
spotless: clean
|
||||
rm -f language.h index
|
||||
rm -f index
|
||||
|
||||
|
||||
cat: cat.l langcomp index
|
||||
@@ -76,6 +76,7 @@ langcomp: langcomp.c
|
||||
|
||||
language.h: index Makefile
|
||||
@perl -e <index >$@ 'print STDERR "Generating language.h... "; $$i=0; while (<>) { chop; printf "#define %-32s %d\n", $$_, $$i++; } print "\n#define NUM_STRINGS $$i\n"; print STDERR "$$i strings\n";'
|
||||
cp language.h ../include
|
||||
|
||||
index: en_us.l
|
||||
grep '^[A-Z]' en_us.l >index
|
||||
|
||||
+3
-2
@@ -25,6 +25,7 @@ distclean: spotless
|
||||
|
||||
.o.s:
|
||||
$(CC) ${SHARED} $< -o $*.so ${PROFILE}
|
||||
@$(TOUCH) $*.s
|
||||
|
||||
subs:
|
||||
@for i in $(SUBS); do \
|
||||
@@ -37,8 +38,8 @@ subs_clean:
|
||||
(cd $$i; $(MAKE) clean); done
|
||||
|
||||
clean: subs_clean
|
||||
rm -f *.o *.so *.c~ core
|
||||
rm -f *.o *.s *.so *.c~ core
|
||||
|
||||
spotless: subs_clean
|
||||
rm -f *.o *.so *.c~ core Makefile.inc
|
||||
rm -f *.o *.s *.so *.c~ core Makefile.inc
|
||||
|
||||
|
||||
@@ -25,6 +25,7 @@ distclean: spotless
|
||||
|
||||
.o.s:
|
||||
$(CC) ${SHARED} $< -o $*.so ${PROFILE}
|
||||
@$(TOUCH) $*.s
|
||||
|
||||
subs:
|
||||
@for i in $(SUBS); do \
|
||||
@@ -37,8 +38,8 @@ subs_clean:
|
||||
(cd $$i; $(MAKE) $(MAKEARGS) clean); done
|
||||
|
||||
clean: subs_clean
|
||||
rm -f *.o *.so *.c~ core
|
||||
rm -f *.o *.s *.so *.c~ core
|
||||
|
||||
spotless:
|
||||
rm -f *.o *.so *.c~ core *.so Makefile.inc
|
||||
rm -f *.o *.s *.so *.c~ core *.so Makefile.inc
|
||||
|
||||
|
||||
@@ -25,6 +25,7 @@ distclean: clean spotless
|
||||
|
||||
.o.s:
|
||||
$(CC) ${SHARED} $< -o $*.so ${PROFILE}
|
||||
@$(TOUCH) $*.s
|
||||
|
||||
subs:
|
||||
@for i in $(SUBS); do \
|
||||
@@ -37,8 +38,8 @@ subs_clean:
|
||||
(cd $$i; $(MAKE) clean); done
|
||||
|
||||
clean: subs_clean
|
||||
rm -f *.o *.so *.c~ core
|
||||
rm -f *.o *.s *.so *.c~ core
|
||||
|
||||
spotless: subs_clean
|
||||
rm -f *.o *.so *.c~ core *.so Makefile.inc
|
||||
rm -f *.o *.s *.so *.c~ core *.so Makefile.inc
|
||||
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="14"
|
||||
VERSION_EXTRA=""
|
||||
VERSION_BUILD="1061"
|
||||
VERSION_BUILD="1062"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.14 (1062)
|
||||
# BUGS :
|
||||
# NOTES : Fixed the makefiles to not recompile the core if nothing changed, and to not always re-link all modules if not needed
|
||||
#
|
||||
# BUILD : 1.7.14 (1061)
|
||||
# BUGS : 408
|
||||
# NOTES : Added support for Visual Studio 2005, partially by replacing install.vbs by a more robust install.js -- thanks heinz!
|
||||
|
||||
Reference in New Issue
Block a user