summaryrefslogtreecommitdiff
path: root/src/modules/Makefile
diff options
context:
space:
mode:
authorgeniusdex 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
committergeniusdex 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
commitf4baaed86c006cea36902f5e8e9d8d34f182f843 (patch)
tree7852d43b80fc5ad5ed1de1c150ebb289cf4617ed /src/modules/Makefile
parentf191314c0fc53497459d54b68d96c7952399700b (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/modules/Makefile')
-rw-r--r--src/modules/Makefile5
1 files changed, 3 insertions, 2 deletions
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