Makefile.am
上传用户:shw771010
上传日期:2022-01-05
资源大小:991k
文件大小:3k
源码类别:

Audio

开发平台:

Unix_Linux

  1. ## Process this file with automake to produce Makefile.in
  2. SUBDIRS = GSM610 G72x
  3. INCLUDES = @EXTERNAL_CFLAGS@
  4. lib_LTLIBRARIES = libsndfile.la
  5. include_HEADERS = sndfile.hh
  6. nodist_include_HEADERS = sndfile.h
  7. noinst_LTLIBRARIES = libcommon.la
  8. OS_SPECIFIC_CFLAGS = @OS_SPECIFIC_CFLAGS@
  9. OS_SPECIFIC_LINKS = @OS_SPECIFIC_LINKS@
  10. SYMBOL_FILES = Symbols.linux Symbols.darwin libsndfile-1.def Symbols.os2 Symbols.static
  11. EXTRA_DIST = sndfile.h.in config.h.in test_endswap.tpl test_endswap.def 
  12. $(SYMBOL_FILES) create_symbols_file.py binheader_writef_check.py 
  13. make-static-lib-hidden-privates.sh
  14. noinst_HEADERS = common.h sfconfig.h sfendian.h wav_w64.h sf_unistd.h chanmap.h
  15. noinst_PROGRAMS = test_main
  16. COMMON = common.c file_io.c command.c pcm.c ulaw.c alaw.c float32.c 
  17. double64.c ima_adpcm.c ms_adpcm.c gsm610.c dwvw.c vox_adpcm.c 
  18. interleave.c strings.c dither.c broadcast.c audio_detect.c 
  19.   ima_oki_adpcm.c ima_oki_adpcm.h chunk.c chanmap.c 
  20. windows.c
  21. FILESPECIFIC = sndfile.c aiff.c au.c avr.c caf.c dwd.c flac.c g72x.c htk.c ircam.c 
  22. macbinary3.c macos.c mat4.c mat5.c nist.c ogg.c paf.c pvf.c raw.c rx2.c sd2.c 
  23. sds.c svx.c txw.c voc.c wve.c w64.c wav_w64.c wav.c xi.c mpc2k.c rf64.c
  24. # MinGW requires -no-undefined if a DLL is to be built.
  25. libsndfile_la_LDFLAGS = -no-undefined -version-info @SHARED_VERSION_INFO@ @SHLIB_VERSION_ARG@
  26. libsndfile_la_SOURCES = $(FILESPECIFIC) $(noinst_HEADERS)
  27. nodist_libsndfile_la_SOURCES = $(nodist_include_HEADERS)
  28. libsndfile_la_LIBADD = libcommon.la GSM610/libgsm.la G72x/libg72x.la 
  29. @EXTERNAL_LIBS@ -lm
  30. libcommon_la_SOURCES = $(COMMON)
  31. test_main_SOURCES = test_main.c test_main.h test_conversions.c test_float.c test_endswap.c 
  32. test_audio_detect.c test_log_printf.c test_file_io.c test_ima_oki_adpcm.c
  33. test_main_LDADD = libcommon.la
  34. test_endswap.c: test_endswap.def test_endswap.tpl
  35. autogen --writable test_endswap.def
  36. genfiles : test_endswap.c $(SYMBOL_FILES)
  37. # A single test programs.
  38. # It is not possible to place these in the tests/ directory because they
  39. # need access to the internals of the SF_PRIVATE struct.
  40. check: $(noinst_PROGRAMS)
  41. @if [ -x /usr/bin/python2.5 ]; then $(srcdir)/binheader_writef_check.py $(srcdir)/*.c ; fi
  42. ./test_main$(EXEEXT)
  43. #======================================================================
  44. # Generate an OS specific Symbols files. This is done when the author
  45. # builds the distribution tarball. There should be not need for the
  46. # end user to create these files.
  47. Symbols.linux: create_symbols_file.py
  48. ./create_symbols_file.py linux $(VERSION) > $@
  49. Symbols.darwin: create_symbols_file.py
  50. ./create_symbols_file.py darwin $(VERSION) > $@
  51. libsndfile-1.def: create_symbols_file.py
  52. ./create_symbols_file.py win32 $(VERSION) > $@
  53. Symbols.os2: create_symbols_file.py
  54. ./create_symbols_file.py os2 $(VERSION) > $@
  55. Symbols.static: create_symbols_file.py
  56. ./create_symbols_file.py static $(VERSION) > $@
  57. # Fake dependancy to force the creation of these files.
  58. sndfile.o : $(SYMBOL_FILES)
  59. #======================================================================
  60. # Disable autoheader.
  61. AUTOHEADER=echo
  62. # Dependancies.
  63. aiff.c au.c g72x.c ircam.c mat4.c mat5.c nist.c paf.c pvf.c : sndfile.h common.h
  64. raw.c svx.c voc.c w64.c wav.c wav_w64.c htk.c sd2.c rx2.c txw.c : sndfile.h common.h
  65. sds.c wve.c dwd.c ogg.c xi.c sndfile.c common.c file_io.c : sndfile.h common.h
  66. command.c pcm.c ulaw.c alaw.c float32.c double64.c ima_adpcm.c : sndfile.h common.h
  67. ms_adpcm.c gsm610.c dwvw.c vox_adpcm.c interleave.c strings.c : sndfile.h common.h
  68. dither.c : sndfile.h common.h