]> arthur.barton.de Git - ngircd-alex.git/blob - Makefile.am
ngIRCd Release 27
[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         .dockerignore \
22         .mailmap
23
24 clean-local:
25         rm -f build-stamp*
26
27 maintainer-clean-local:
28         rm -rf autom4te.cache
29         rm -f Makefile.in Makefile aclocal.m4 configure configure.ac
30         rm -f ar-lib mkinstalldirs missing depcomp install-sh
31         rm -f config.log debian
32
33 testsuite:
34         ${MAKE} -C src/testsuite check
35
36 srcdoc:
37         ${MAKE} -C doc/src srcdoc
38
39 rpm: distcheck
40         rpmbuild -ta ngircd-$(VERSION).tar.gz
41
42 deb:
43         [ -f debian/rules ] || ln -s contrib/Debian debian
44         dpkg-buildpackage --build=binary
45
46 .PHONY: deb rpm srcdoc testsuite
47
48 # -eof-