Makefile.am 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ##
  2. ## g722_1 - a library for the ITU G.722.1 and Annex C codecs
  3. ##
  4. ## Makefile.am -- Process this file with automake to produce Makefile.in
  5. ##
  6. ## This program is free software; you can redistribute it and/or modify
  7. ## it under the terms of the GNU General Public License version 2, as
  8. ## published by the Free Software Foundation.
  9. ##
  10. ## This program is distributed in the hope that it will be useful,
  11. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ## GNU General Public License for more details.
  14. ##
  15. ## You should have received a copy of the GNU General Public License
  16. ## along with this program; if not, write to the Free Software
  17. ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. AM_CFLAGS = $(COMP_VENDOR_CFLAGS)
  19. AM_LDFLAGS = $(COMP_VENDOR_LDFLAGS)
  20. LIBS += $(TESTLIBS)
  21. EXTRA_DIST = regression_tests.sh
  22. MAINTAINERCLEANFILES = Makefile.in
  23. AM_CPPFLAGS = -I$(top_builddir)/src -DDATADIR="\"$(pkgdatadir)\""
  24. LIBDIR = -L$(top_builddir)/src
  25. noinst_PROGRAMS = g722_1_tests
  26. noinst_HEADERS = g192_bit_stream.h \
  27. timing.h
  28. g722_1_tests_SOURCES = g722_1_tests.c g192_bit_stream.c
  29. g722_1_tests_LDADD = $(LIBDIR) -lg722_1