]> arthur.barton.de Git - ngircd-alex.git/blob - Makefile.am
Convert the AUTHORS file to Markdown
[ngircd-alex.git] / Makefile.am
1 #
2 # ngIRCd -- The Next Generation IRC Daemon
3 # Copyright (c)2001-2024 Alexander Barton (alex@barton.de) and Contributors
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
12 SUBDIRS = doc src man contrib
13
14 EXTRA_DIST = \
15         AUTHORS.md \
16         INSTALL.md \
17         README.md \
18         autogen.sh \
19         configure.ng \
20         .clang_complete \
21         .mailmap
22
23 clean-local:
24         rm -f build-stamp*
25
26 maintainer-clean-local:
27         rm -rf autom4te.cache
28         rm -f Makefile.in Makefile aclocal.m4 configure configure.ac
29         rm -f ar-lib mkinstalldirs missing depcomp install-sh
30         rm -f config.log debian
31
32 testsuite:
33         cd src/testsuite && ${MAKE} check
34
35 lint:
36         cd src/ngircd && ${MAKE} lint
37
38 srcdoc:
39         cd doc && ${MAKE} srcdoc
40
41 rpm: distcheck
42         rpm -ta ngircd-*.tar.gz
43
44 deb:
45         [ -f debian/rules ] || ln -s contrib/Debian debian
46         dpkg-buildpackage --build=binary
47
48 .PHONY: deb lint rpm srcdoc testsuite
49
50 # -eof-