X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile.am;h=ae29ac18acc18fe1e5c125f53b4954dfa6b621fc;hb=2984dad8b4bd259db6501e45df52378b2da5ff2f;hp=27a7d55249f0eaa25412142494b500333e584aaa;hpb=ca33cbda05902b0009058d369f88c0a7a43b1bbe;p=ngircd-alex.git diff --git a/Makefile.am b/Makefile.am index 27a7d552..ae29ac18 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,25 +1,50 @@ # # ngIRCd -- The Next Generation IRC Daemon -# Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) +# Copyright (c)2001-2024 Alexander Barton (alex@barton.de) and Contributors # -# Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen -# der GNU General Public License (GPL), wie von der Free Software Foundation -# herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 -# der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. -# Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste -# der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. -# -# $Id: Makefile.am,v 1.7 2002/03/12 14:37:51 alex Exp $ +# 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 +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# Please read the file COPYING, README and AUTHORS for more information. # -AUTOMAKE_OPTIONS = gnu +SUBDIRS = doc src man contrib + +EXTRA_DIST = \ + AUTHORS.md \ + INSTALL.md \ + README.md \ + autogen.sh \ + configure.ng \ + .clang_complete \ + .mailmap -SUBDIRS = doc MacOSX src +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 + 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: + cd src/testsuite && ${MAKE} check + +lint: + cd src/ngircd && ${MAKE} lint + +srcdoc: + cd doc && ${MAKE} srcdoc + +rpm: distcheck + rpm -ta ngircd-*.tar.gz + +deb: + [ -f debian/rules ] || ln -s contrib/Debian debian + dpkg-buildpackage --build=binary + +.PHONY: deb lint rpm srcdoc testsuite # -eof-