Makefile.am
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:2k
源码类别:

Windows CE

开发平台:

C/C++

  1. #  flac - Command-line FLAC encoder/decoder
  2. #  Copyright (C) 2000,2001,2002,2003,2004,2005  Josh Coalson
  3. #
  4. #  This program is free software; you can redistribute it and/or
  5. #  modify it under the terms of the GNU General Public License
  6. #  as published by the Free Software Foundation; either version 2
  7. #  of the License, or (at your option) any later version.
  8. #
  9. #  This program 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
  12. #  GNU General Public License for more details.
  13. #
  14. #  You should have received a copy of the GNU General Public License
  15. #  along with this program; if not, write to the Free Software
  16. #  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17. bin_PROGRAMS = flac
  18. AM_CFLAGS = @OGG_CFLAGS@
  19. if FLaC__HAS_OGG
  20. NEED_OGGFLAC_LIB = $(top_builddir)/src/libOggFLAC/libOggFLAC.la
  21. endif
  22. EXTRA_DIST = 
  23. Makefile.lite 
  24. flac.dsp
  25. flac_SOURCES = 
  26. analyze.c 
  27. decode.c 
  28. encode.c 
  29. main.c 
  30. local_string_utils.c 
  31. utils.c 
  32. vorbiscomment.c 
  33. analyze.h 
  34. decode.h 
  35. encode.h 
  36. local_string_utils.h 
  37. utils.h 
  38. vorbiscomment.h
  39. flac_LDADD = 
  40. $(NEED_OGGFLAC_LIB) 
  41. $(top_builddir)/src/share/grabbag/libgrabbag.la 
  42. $(top_builddir)/src/share/getopt/libgetopt.a 
  43. $(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la 
  44. $(top_builddir)/src/share/replaygain_synthesis/libreplaygain_synthesis.la 
  45. $(top_builddir)/src/share/utf8/libutf8.la 
  46. $(top_builddir)/src/libFLAC/libFLAC.la 
  47. @OGG_LIBS@ 
  48. @LIBICONV@ 
  49. -lm