Makefile.am 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #
  2. # ngIRCd -- The Next Generation IRC Daemon
  3. # Copyright (c)2001-2024 Alexander Barton (alex@barton.de) and Contributors
  4. #
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9. # Please read the file COPYING, README and AUTHORS for more information.
  10. #
  11. SUBDIRS = doc src man contrib
  12. EXTRA_DIST = \
  13. AUTHORS.md \
  14. INSTALL.md \
  15. README.md \
  16. autogen.sh \
  17. configure.ng \
  18. .clang_complete \
  19. .dockerignore \
  20. .mailmap
  21. clean-local:
  22. rm -f build-stamp*
  23. maintainer-clean-local:
  24. rm -rf autom4te.cache
  25. rm -f Makefile.in Makefile aclocal.m4 configure configure.ac
  26. rm -f ar-lib mkinstalldirs missing depcomp install-sh
  27. rm -f config.log debian
  28. testsuite:
  29. ${MAKE} -C src/testsuite check
  30. srcdoc:
  31. ${MAKE} -C doc/src srcdoc
  32. rpm: distcheck
  33. rpmbuild -ta ngircd-$(VERSION).tar.gz
  34. deb:
  35. [ -f debian/rules ] || ln -s contrib/Debian debian
  36. dpkg-buildpackage --build=binary
  37. .PHONY: deb rpm srcdoc testsuite
  38. # -eof-