diff options
author | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-08-11 14:54:43 +0000 |
---|---|---|
committer | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-08-11 14:54:43 +0000 |
commit | 7bbc80af47b21f4bd9f6f804aa545a005e92e5ee (patch) | |
tree | e1a2147e5d2ee9ba9a797ab3a465407e12bee8d0 /src | |
parent | 93ccd1541e8cdba90911470ecc88d0339f84125c (diff) |
BUILD : 1.7.5 (321) BUGS : none NOTES : Fixed make distclean and updated hun.l
git-svn-id: svn://svn.anope.org/anope/trunk@321 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@199 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 8771522ee..aa2303268 100644 --- a/src/Makefile +++ b/src/Makefile @@ -31,6 +31,8 @@ MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \ all: services +distclean: clean spotless + services: $(OBJS) $(CC) $(CFLAGS) $(OBJS) $(ANOPELIBS) $(MLIBS) -o $@ $(LDFLAGS) @@ -76,9 +78,13 @@ modules: DUMMY (cd modules ; ./configure ; ${MAKE} ${MAKEARGS} all) clean: + @touch modules/Makefile.inc # Horribly ugly... (cd modules ; ${MAKE} ${MAKEARGS} clean) rm -f *.o services a.out +spotless: clean + (cd modules ; ${MAKE} ${MAKEARGS} distclean) + install: services test -d ${BINDEST} || mkdir ${BINDEST} $(INSTALL) services $(BINDEST)/services |