1## Process this file with automake to produce Makefile.in
2
3INCLUDES = \
4	-DDATA_DIR=\""$(datadir)/glurp/"\" \
5	@PACKAGE_CFLAGS@ @EXTRA_CFLAGS@ -Wall
6
7bin_PROGRAMS = glurp
8
9glurp_SOURCES = \
10	conf.h conf.c \
11	mpd-callbacks.h mpd-callbacks.c \
12	gui.h gui.c \
13	comm.h comm.c \
14	gui-callbacks.h gui-callbacks.c \
15	player.h player.c \
16	keyboard.c \
17	main.c \
18	structs.h \
19	support.h support.c \
20  trayicon.h trayicon.c \
21  traymenu.h traymenu.c
22
23glurp_LDFLAGS = -export-dynamic @EXTRA_LDFLAGS@
24
25glurp_LDADD = @PACKAGE_LIBS@
26