diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-04 17:26:49 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-04 17:26:49 +0000 |
commit | 512125c522c5bdba47cc66aebf1bbe2c2cdf234f (patch) | |
tree | 0fa7927a666affea40282f35add22691713cab0c | |
parent | a22d9ec3b0ba71f4b1493c2ececd27777a42f65d (diff) |
BUILD : 1.7.8 (596) BUGS : N/A NOTES : Added clean_modules and distclean_modules as valid make targets
git-svn-id: svn://svn.anope.org/anope/trunk@596 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@445 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Makefile.in | 7 | ||||
-rw-r--r-- | src/Makefile | 7 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 17 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index f851fde08..94785e842 100644 --- a/Makefile.in +++ b/Makefile.in @@ -54,6 +54,13 @@ modules: build (cd src/modules ; ./configure ; ${MAKE} ${MAKEARGS} all; ) @echo "*** All done, now (g)make install to install Anope/Modules"; +clean_modules: + (cd src ; ${MAKE} ${MAKEARGS} clean_modules ) + +distclean_modules: + (cd src ; ${MAKE} ${MAKEARGS} distclean_modules ) + + tools: build (cd src/tools ; ${MAKE} ${MAKEARGS} all; ) @echo "*** All done, now (g)make install to install Anope/Modules/Tools"; diff --git a/src/Makefile b/src/Makefile index f1c6a4169..b4b1269ec 100644 --- a/src/Makefile +++ b/src/Makefile @@ -38,6 +38,7 @@ MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \ all: services distclean: clean spotless +distclean_modules: clean_modules spotless services: $(OBJS) $(CC) $(CFLAGS) $(OBJS) $(ANOPELIBS) $(MLIBS) -o $@ $(LDFLAGS) @@ -87,10 +88,12 @@ rdb.o: rdb.c $(INCLUDES) modules: DUMMY (cd modules ; ./configure ; ${MAKE} ${MAKEARGS} all) -clean: +clean: clean_modules + rm -f *.o services a.out +clean_modules: @touch modules/Makefile.inc # Horribly ugly... (cd modules ; ${MAKE} ${MAKEARGS} clean) - rm -f *.o services a.out + spotless: clean (cd modules ; ${MAKE} ${MAKEARGS} distclean) diff --git a/version.log b/version.log index 104cd7945..1909ed566 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="8" -VERSION_BUILD="595" +VERSION_BUILD="596" # $Log$ # +# BUILD : 1.7.8 (596) +# BUGS : N/A +# NOTES : Added clean_modules and distclean_modules as valid make targets +# # BUILD : 1.7.8 (595) # BUGS : N/A # NOTES : ShadowIRCD, and cleaned up Numeric |