summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorcertus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2006-03-22 08:38:32 +0000
committercertus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2006-03-22 08:38:32 +0000
commit644eba4d9e2d7081ccb81cd50de6546c08f21686 (patch)
tree7e531de082fd037bd8ef159f0e6ccc8210b92056 /src/Makefile
parentbe5eab2cd0dc2640391af83d140dc00969d3e450 (diff)
# BUILD : 1.7.13 (1015) # BUGS : # NOTES : Fixed distclean.
git-svn-id: svn://svn.anope.org/anope/trunk@1015 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@740 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Makefile b/src/Makefile
index 9e55769b5..e9b2e1469 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -29,7 +29,7 @@ MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \
all: services
-distclean: clean spotless
+distclean: spotless
distclean_modules: clean_modules spotless
services: $(OBJS)
@@ -88,20 +88,20 @@ clean: clean_modules clean_protocols clean_core
rm -f *.o services a.out
clean_modules:
@touch modules/Makefile.inc # Horribly ugly...
- (cd modules ; ${MAKE} ${MAKEARGS} clean)
+ (cd modules ; ${MAKE} clean)
clean_protocols:
@touch protocol/Makefile.inc
- (cd protocol ; ${MAKE} ${MAKEARGS} clean)
+ (cd protocol ; ${MAKE} clean)
clean_core:
@touch core/Makefile.inc
- (cd core ; ${MAKE} ${MAKEARGS} clean)
+ (cd core ; ${MAKE} clean)
-spotless: clean
- (cd modules ; ${MAKE} ${MAKEARGS} distclean)
- (cd protocol ; ${MAKE} ${MAKEARGS} distclean)
- (cd core ; ${MAKE} ${MAKEARGS} distclean)
+spotless:
+ (cd modules ; ${MAKE} distclean)
+ (cd protocol ; ${MAKE} distclean)
+ (cd core ; ${MAKE} distclean)
install: services
test -d ${BINDEST} || mkdir ${BINDEST}