diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-06-20 18:31:05 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-06-20 18:31:05 +0000 |
commit | f4baaed86c006cea36902f5e8e9d8d34f182f843 (patch) | |
tree | 7852d43b80fc5ad5ed1de1c150ebb289cf4617ed /src | |
parent | f191314c0fc53497459d54b68d96c7952399700b (diff) |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/core/Makefile | 5 | ||||
-rw-r--r-- | src/modules/Makefile | 5 | ||||
-rw-r--r-- | src/protocol/Makefile | 5 |
3 files changed, 9 insertions, 6 deletions
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 |