Makefile.am 1.2 KB

1234567891011121314151617181920212223242526272829
  1. bin_PROGRAMS = audiowmark
  2. COMMON_SRC = utils.hh utils.cc convcode.hh convcode.cc random.hh random.cc wavdata.cc wavdata.hh \
  3. audiostream.cc audiostream.hh sfinputstream.cc sfinputstream.hh stdoutwavoutputstream.cc stdoutwavoutputstream.hh \
  4. sfoutputstream.cc sfoutputstream.hh rawinputstream.cc rawinputstream.hh rawoutputstream.cc rawoutputstream.hh \
  5. rawconverter.cc rawconverter.hh mp3inputstream.cc mp3inputstream.hh wmcommon.cc wmcommon.hh fft.cc fft.hh \
  6. limiter.cc limiter.hh
  7. COMMON_LIBS = $(SNDFILE_LIBS) $(FFTW_LIBS) $(LIBGCRYPT_LIBS) $(LIBMPG123_LIBS)
  8. audiowmark_SOURCES = audiowmark.cc wmget.cc wmadd.cc $(COMMON_SRC)
  9. audiowmark_LDFLAGS = $(COMMON_LIBS)
  10. noinst_PROGRAMS = testconvcode testrandom testmp3 teststream testlimiter
  11. testconvcode_SOURCES = testconvcode.cc $(COMMON_SRC)
  12. testconvcode_LDFLAGS = $(COMMON_LIBS)
  13. testrandom_SOURCES = testrandom.cc $(COMMON_SRC)
  14. testrandom_LDFLAGS = $(COMMON_LIBS)
  15. testmp3_SOURCES = testmp3.cc $(COMMON_SRC)
  16. testmp3_LDFLAGS = $(COMMON_LIBS)
  17. teststream_SOURCES = teststream.cc $(COMMON_SRC)
  18. teststream_LDFLAGS = $(COMMON_LIBS)
  19. testlimiter_SOURCES = testlimiter.cc $(COMMON_SRC)
  20. testlimiter_LDFLAGS = $(COMMON_LIBS)