Makefile.ng 875 B

1234567891011121314151617181920212223242526272829303132333435
  1. #
  2. # ngIRCd -- The Next Generation IRC Daemon
  3. # Copyright (c)2001-2012 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 = strdup.c strlcpy.c strtok_r.c vsnprintf.c waitpid.c
  15. check_PROGRAMS = portabtest
  16. portabtest_SOURCES = portabtest.c
  17. portabtest_LDFLAGS = -L.
  18. portabtest_LDADD = -lngportab
  19. noinst_HEADERS = imp.h exp.h portab.h splint.h
  20. maintainer-clean-local:
  21. rm -f Makefile Makefile.in Makefile.am
  22. TESTS = portabtest
  23. # -eof-