31 lines
559 B
Makefile
31 lines
559 B
Makefile
bin_PROGRAMS = mpdnotify
|
|
|
|
mpdnotify_VALASOURCES = \
|
|
src/albumart.vala \
|
|
src/notifier.vala \
|
|
src/mpdnotify.vala
|
|
|
|
mpdnotify_SOURCES = $(mpdnotify_VALASOURCES)
|
|
|
|
mpdnotify_VALAFLAGS = \
|
|
--target-glib=@TARGET_GLIB@ \
|
|
--vapidir $(top_srcdir)/vapi \
|
|
--pkg json-glib-1.0 \
|
|
--pkg libmpdclient \
|
|
--pkg libnotify \
|
|
--pkg libsoup-2.4
|
|
|
|
LIBS = @LIBS@ \
|
|
@glib_LIBS@ \
|
|
@jsonglib_LIBS@ \
|
|
@libmpdclient_LIBS@ \
|
|
@libnotify_LIBS@ \
|
|
@libsoup_LIBS@
|
|
|
|
AM_CFLAGS = \
|
|
@glib_CFLAGS@ \
|
|
@jsonglib_CFLAGS@ \
|
|
@libmpdclient_CFLAGS@ \
|
|
@libnotify_CFLAGS@ \
|
|
@libsoup_CFLAGS@
|