]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/Makefile.am
Introduce option to configure the maximum nick name lenth in ngircd.conf
[ngircd-alex.git] / src / ngircd / Makefile.am
1 #
2 # ngIRCd -- The Next Generation IRC Daemon
3 # Copyright (c)2001-2003 by Alexander Barton (alex@barton.de)
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 # Please read the file COPYING, README and AUTHORS for more information.
10 #
11 # $Id: Makefile.am,v 1.50 2007/11/21 12:16:36 alex Exp $
12 #
13
14 AUTOMAKE_OPTIONS = ../portab/ansi2knr
15
16 INCLUDES = -I$(srcdir)/../portab -I$(srcdir)/../tool
17
18 LINTARGS = -weak -warnunixlib +unixlib -booltype BOOLEAN \
19  -varuse -retvalother -emptyret -unrecog
20
21 sbin_PROGRAMS = ngircd
22
23 ngircd_SOURCES = ngircd.c array.c channel.c client.c conf.c conn.c conn-func.c \
24         conn-zip.c hash.c io.c irc.c irc-channel.c irc-info.c irc-login.c \
25         irc-mode.c irc-op.c irc-oper.c irc-server.c irc-write.c lists.c log.c \
26         match.c numeric.c parse.c rendezvous.c resolve.c
27
28 ngircd_LDFLAGS = -L../portab -L../tool
29
30 ngircd_LDADD = -lngportab -lngtool
31
32 noinst_HEADERS = ngircd.h array.h channel.h client.h conf.h conn.h conn-func.h \
33         conn-zip.h hash.h io.h irc.h irc-channel.h irc-info.h irc-login.h \
34         irc-mode.h irc-op.h irc-oper.h irc-server.h irc-write.h lists.h log.h \
35         match.h numeric.h parse.h rendezvous.h resolve.h \
36         defines.h messages.h
37
38 clean-local:
39         rm -f check-version check-help lint.out cvs-version.*
40
41 maintainer-clean-local:
42         rm -f Makefile Makefile.in
43
44 check-version: Makefile
45         echo "#!/bin/sh" > check-version
46         echo "./ngircd --version | grep ngircd >/dev/null 2>&1" >>check-version
47         chmod 755 check-version
48
49 check-help: Makefile
50         echo "#!/bin/sh" > check-help
51         echo "./ngircd --help | grep help >/dev/null 2>&1" >>check-help
52         chmod 755 check-help
53
54 lint:
55         @splint --version >/dev/null 2>&1 \
56          || ( echo; echo "Error: \"splint\" not found!"; echo; exit 1 )
57         @echo; warnings=0; files=0; \
58         for f in *.c; do \
59          echo "checking $$f ..."; \
60          splint $$f $(LINTARGS) -I$(srcdir) -I$(srcdir)/.. \
61           $(INCLUDES) $(AM_CFLAGS) >lint.out 2>&1; \
62          grep "no warnings" lint.out > /dev/null 2>&1; \
63          if [ $$? -ne 0 ]; then \
64           waswarning=1; \
65           echo; grep -v "^Command Line: " lint.out; echo; \
66           w=$$( grep "code warning" lint.out | $(AWK) "{ print \$$4 }" ); \
67           [ "$$w" -gt 0 ] && warnings=`expr $$warnings + $$w`; \
68           files=`expr $$files + 1`; \
69          else \
70           waswarning=0; \
71          fi; \
72          rm -f lint.out; \
73         done; \
74         [ $$waswarning -eq 0 ] && echo; \
75         [ $$warnings -gt 0 ] \
76          && echo "Result: $$warnings warning(s) in $$files file(s)!" \
77          || echo "Result: no warnings found."; \
78         echo; [ $$warnings -gt 0 ] && exit 1
79
80 ngircd.c: cvs-version.h
81
82 irc-login.c: cvs-version.h
83
84 irc-info.c: cvs-version.h
85
86 cvs-version.h: cvs-date
87
88 cvs-date:
89         grep VERSION ../config.h | grep "CVS" \
90          && echo "#define CVSDATE \"$$( grep "\$$Id" $(srcdir)/*.c \
91             | $(AWK) "{ print \$$9 }" | sort | tail -1 \
92             | sed -e "s/\//-/g" )\"" > cvs-version.new \
93          || echo "" > cvs-version.new
94         diff cvs-version.h cvs-version.new 2>/dev/null \
95          || cp cvs-version.new cvs-version.h
96
97 TESTS = check-version check-help
98
99 # -eof-