You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
845 B

  1. ACLOCAL_AMFLAGS = -I m4
  2. AUTOMAKE_OPTIONS = foreign 1.11 dist-xz subdir-objects
  3. bin_PROGRAMS = src/mpc
  4. src_mpc_SOURCES = \
  5. src/main.c src/mpc.h \
  6. src/list.c src/list.h \
  7. src/password.c src/password.h \
  8. src/status.c src/status.h \
  9. src/args.c src/args.h \
  10. src/format.c src/format.h \
  11. src/song_format.c src/song_format.h \
  12. src/util.c src/util.h \
  13. src/command.c src/command.h \
  14. src/queue.c src/queue.h \
  15. src/sticker.c src/sticker.h \
  16. src/tab.c src/tab.h \
  17. src/idle.c src/idle.h \
  18. src/message.c src/message.h \
  19. src/search.c src/search.h \
  20. src/output.c src/output.h \
  21. src/options.c src/options.h \
  22. src/path.c src/path.h \
  23. src/Compiler.h
  24. if HAVE_ICONV
  25. src_mpc_SOURCES += src/charset.c src/charset.h
  26. endif
  27. src_mpc_CPPFLAGS = $(AM_CPPFLAGS) $(ICONV_CFLAGS) $(LIBMPDCLIENT_CFLAGS)
  28. src_mpc_LDADD = $(ICONV_LIBS) $(LIBMPDCLIENT_LIBS)