]> arthur.barton.de Git - ngircd-alex.git/blob - Makefile.am
Remove outdated and obsolete targets from the toplevel Makefile
[ngircd-alex.git] / Makefile.am
1 #
2 # ngIRCd -- The Next Generation IRC Daemon
3 # Copyright (c)2001-2015 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 = README.md INSTALL.md autogen.sh configure.ng .clang_complete .mailmap
15
16 clean-local:
17         rm -f build-stamp*
18
19 maintainer-clean-local:
20         rm -rf autom4te.cache
21         rm -f Makefile.in Makefile aclocal.m4 configure configure.ac
22         rm -f ar-lib mkinstalldirs missing depcomp install-sh
23         rm -f config.log debian
24
25 testsuite:
26         cd src/testsuite && ${MAKE} check
27
28 lint:
29         cd src/ngircd && ${MAKE} lint
30
31 srcdoc:
32         cd doc && ${MAKE} srcdoc
33
34 rpm: distcheck
35         rpm -ta ngircd-*.tar.gz
36
37 deb:
38         [ -f debian/rules ] || ln -s contrib/Debian debian
39         dpkg-buildpackage -rfakeroot -i
40
41 .PHONY: deb lint rpm srcdoc testsuite
42
43 # -eof-