X-Git-Url: https://arthur.barton.de/gitweb/?p=ngircd-alex.git;a=blobdiff_plain;f=Makefile.am;h=ec9c4447c0b9cf61a826bbffd77fd278385de5de;hp=66ea2919831297e3c117850f1048323b8a07b8b4;hb=HEAD;hpb=ad07c94c8dca0a1f472171e9300a6894ba0b0a46 diff --git a/Makefile.am b/Makefile.am index 66ea2919..aa491a91 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ # # ngIRCd -- The Next Generation IRC Daemon -# Copyright (c)2001-2003 by Alexander Barton (alex@barton.de) +# Copyright (c)2001-2024 Alexander Barton (alex@barton.de) and Contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -8,27 +8,41 @@ # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # -# $Id: Makefile.am,v 1.14 2004/01/01 22:24:48 alex Exp $ -# - -AUTOMAKE_OPTIONS = gnu SUBDIRS = doc src man contrib +EXTRA_DIST = \ + AUTHORS.md \ + INSTALL.md \ + README.md \ + autogen.sh \ + configure.ng \ + .clang_complete \ + .dockerignore \ + .mailmap + +clean-local: + rm -f build-stamp* + maintainer-clean-local: rm -rf autom4te.cache - rm -f Makefile.in Makefile aclocal.m4 configure - rm -f mkinstalldirs missing depcomp install-sh - rm -f config.log build-stamp* debian + rm -f Makefile.in Makefile aclocal.m4 configure configure.ac + rm -f ar-lib mkinstalldirs missing depcomp install-sh + rm -f config.log debian + +testsuite: + ${MAKE} -C src/testsuite check -lint: - make -C src/ngircd lint +srcdoc: + ${MAKE} -C doc/src srcdoc rpm: distcheck - rpm -ta ngircd-*.tar.gz + rpmbuild -ta ngircd-$(VERSION).tar.gz deb: [ -f debian/rules ] || ln -s contrib/Debian debian - dpkg-buildpackage -rfakeroot + dpkg-buildpackage --build=binary + +.PHONY: deb rpm srcdoc testsuite # -eof-