Makefile.ng 891 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #
  2. # ngIRCd -- The Next Generation IRC Daemon
  3. # Copyright (c)2001-2014 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. __ng_Makefile_am_template__
  12. EXTRA_DIST = Makefile.ng
  13. noinst_LIBRARIES = libngportab.a
  14. libngportab_a_SOURCES = \
  15. strdup.c \
  16. strlcpy.c \
  17. strndup.c \
  18. strtok_r.c \
  19. vsnprintf.c \
  20. waitpid.c
  21. check_PROGRAMS = portabtest
  22. portabtest_SOURCES = portabtest.c
  23. portabtest_LDFLAGS = -L.
  24. portabtest_LDADD = -lngportab
  25. noinst_HEADERS = portab.h splint.h
  26. maintainer-clean-local:
  27. rm -f Makefile Makefile.in Makefile.am
  28. TESTS = portabtest
  29. # -eof-