X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile.am;h=aa491a91317ef4713fa347461ee2c138811e2a3e;hb=c1c0bca0e2fa7b678a18155abaf364fcb9dab427;hp=23ed90bccb007dd7a485cbd946973729ca93a2e8;hpb=707cc42dec2439da1fdee4ed3eb0e0a44d5ea9fe;p=ngircd-alex.git diff --git a/Makefile.am b/Makefile.am index 23ed90bc..aa491a91 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ # # ngIRCd -- The Next Generation IRC Daemon -# Copyright (c)2001-2008 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 @@ -9,64 +9,40 @@ # 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 \ + .dockerignore \ + .mailmap + clean-local: rm -f build-stamp* - rm -rf ngircd.dest 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 testsuite: - make -C src/testsuite check - -lint: - make -C src/ngircd lint + ${MAKE} -C src/testsuite check srcdoc: - make -C doc srcdoc - -xcode: - @xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -list \ - >/dev/null 2>&1 \ - || ( echo; echo "Error: \"xcodebuild\" not found!"; echo; exit 1 ) - xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -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 -osxpkg: - @packagemaker >/dev/null 2>&1; [ $$? -ge 1 ] \ - || ( echo; echo "Error: \"packagemaker\" not found!"; echo; exit 2) - make clean - ./configure --prefix=/opt/ngircd - make xcode - make -C contrib/MacOSX de.barton.ngircd.plist - mkdir -p ngircd.dest/opt/ngircd/sbin - DESTDIR="$$PWD/ngircd.dest" make -C doc install - DESTDIR="$$PWD/ngircd.dest" make -C contrib install - DESTDIR="$$PWD/ngircd.dest" make -C man install - cp contrib/MacOSX/build/Default/ngIRCd \ - ngircd.dest/opt/ngircd/sbin/ngircd - rm ngircd.dest/opt/ngircd/etc/ngircd.conf - echo "Have a nice day IRCing!" >ngircd.dest/opt/ngircd/etc/ngircd.motd - chmod -R a-s,og-w,a+rX ngircd.dest - cd contrib/MacOSX && packagemaker \ - --doc ngIRCd.pmdoc \ - --out ../../$(distdir).mpkg - rm -f $(distdir).mpkg.zip - zip -ro9 $(distdir).mpkg.zip $(distdir).mpkg - rm -rf ngircd.dest $(distdir).mpkg +.PHONY: deb rpm srcdoc testsuite # -eof-