Makefile.am
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:1k
源码类别:

midi

开发平台:

Unix_Linux

  1. # Secure RTP with libgcrypt
  2. # Copyright (C) 2007  Rémi Denis-Courmont <rdenis # simphalempin , com>
  3. #
  4. # This library is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU Lesser General Public
  6. # License as published by the Free Software Foundation; either
  7. # version 2.1 of the License, or (at your option) any later version.
  8. #
  9. # This library is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. # Lesser General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Lesser General Public
  15. # License along with this library; if not, write to the Free Software
  16. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  17. AM_CPPFLAGS = @LIBGCRYPT_CFLAGS@
  18. noinst_HEADERS = srtp.h
  19. EXTRA_PROGRAMS = srtp
  20. noinst_LTLIBRARIES = libvlc_srtp.la
  21. check_PROGRAMS = test-aes test-recv
  22. TESTS = $(check_PROGRAMS)
  23. libvlc_srtp_la_SOURCES = srtp.c
  24. libvlc_srtp_la_LIBADD = @LIBGCRYPT_LIBS@
  25. srtp_SOURCES = recv.c
  26. srtp_LDADD = libvlc_srtp.la
  27. test_recv_LDADD = libvlc_srtp.la
  28. test_aes_LDADD = @LIBGCRYPT_LIBS@
  29. if !HAVE_WIN32
  30. libvlc_srtp_la_LIBADD += -lpthread
  31. test_aes_LDADD += -lpthread
  32. endif
  33. lcov-run:
  34. rm -Rf *.gcda lcov
  35. $(MAKE) $(AM_MAKEFLAGS) check
  36. lcov-pre.out:
  37. lcov -c -d . -o lcov.tmp
  38. lcov.out: lcov-pre.out
  39. lcov -r lcov.tmp '*test*' > lcov.out
  40. lcov: lcov.out
  41. genhtml lcov.out -o lcov
  42. .PHONY: lcov-run