1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 17:56:38 +02:00

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
This commit is contained in:
rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b
2005-03-04 17:26:49 +00:00
parent a22d9ec3b0
commit 512125c522
3 changed files with 17 additions and 3 deletions
+7
View File
@@ -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";
+5 -2
View File
@@ -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)
+5 -1
View File
@@ -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