summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes1
-rw-r--r--lang/Makefile5
-rw-r--r--src/core/Makefile5
-rw-r--r--src/modules/Makefile5
-rw-r--r--src/protocol/Makefile5
-rw-r--r--version.log6
6 files changed, 18 insertions, 9 deletions
diff --git a/Changes b/Changes
index 71c80e8ab..161db3357 100644
--- a/Changes
+++ b/Changes
@@ -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]
diff --git a/lang/Makefile b/lang/Makefile
index 8d3c55dcd..9f7a9a7e0 100644
--- a/lang/Makefile
+++ b/lang/Makefile
@@ -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
diff --git a/src/core/Makefile b/src/core/Makefile
index ca762fbff..7b63b330d 100644
--- a/src/core/Makefile
+++ b/src/core/Makefile
@@ -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
diff --git a/src/modules/Makefile b/src/modules/Makefile
index 4a261d96f..ee891c216 100644
--- a/src/modules/Makefile
+++ b/src/modules/Makefile
@@ -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
diff --git a/src/protocol/Makefile b/src/protocol/Makefile
index a30aee45d..53294906f 100644
--- a/src/protocol/Makefile
+++ b/src/protocol/Makefile
@@ -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
diff --git a/version.log b/version.log
index 8f946c8f7..0bcc5b9e0 100644
--- a/version.log
+++ b/version.log
@@ -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!