X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=Makefile.am;h=ec9c4447c0b9cf61a826bbffd77fd278385de5de;hb=HEAD;hp=a056501e633095c780f7f091d1c6c8be51caff48;hpb=ea076a28f2ff16c0424c0ba488227dbe1d3393bf;p=ngircd-alex.git diff --git a/Makefile.am b/Makefile.am index a056501e..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,26 +8,41 @@ # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # -# $Id: Makefile.am,v 1.12 2003/12/31 17:09:40 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 -SUBDIRS = doc MacOSX src man contrib debian +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 + rm -f Makefile.in Makefile aclocal.m4 configure configure.ac + rm -f ar-lib mkinstalldirs missing depcomp install-sh + rm -f config.log debian -lint: - make -C src/ngircd lint +testsuite: + ${MAKE} -C src/testsuite check + +srcdoc: + ${MAKE} -C doc/src srcdoc rpm: distcheck - rpm -ta ngircd-*.tar.gz + rpmbuild -ta ngircd-$(VERSION).tar.gz deb: - dpkg-buildpackage -rfakeroot + [ -f debian/rules ] || ln -s contrib/Debian debian + dpkg-buildpackage --build=binary + +.PHONY: deb rpm srcdoc testsuite # -eof-