X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=Makefile.am;h=aa491a91317ef4713fa347461ee2c138811e2a3e;hp=790f0df0b34c64d51b01c739eeaccffa84570629;hb=HEAD;hpb=317841529b31f50ed31c6f2af30edeee0f7e4fae diff --git a/Makefile.am b/Makefile.am index 790f0df0..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,39 +8,41 @@ # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # -# $Id: Makefile.am,v 1.17 2005/07/22 21:01:52 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 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 srcdoc - -xcode: - @xcodebuild -project contrib/MacOSX/ngIRCd.xcode -list >/dev/null 2>&1 \ - || ( echo; echo "Error: \"xcodebuild\" not found!"; echo; exit 1 ) - xcodebuild -project contrib/MacOSX/ngIRCd.xcode -alltargets \ - -buildstyle Development + ${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-