blob: fc81ed9b9a584ad06ac3902fecc7227d18723f54 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#
# $Id$
#
bin_PROGRAMS = ncmpc
ncmpc_LDADD = $(GLIB_LIBS)
AM_CPPFLAGS = $(GLIB_CFLAGS) -DLOCALE_DIR=\""$(datadir)/locale"\" -DSYSCONFDIR=\""$(sysconfdir)"\"
ncmpc_headers = libmpdclient.h mpdclient.h options.h conf.h command.h \
screen.h screen_utils.h list_window.h colors.h support.h \
wreadln.h strfsong.h utils.h ncmpc.h
ncmpc_SOURCES = libmpdclient.c main.c mpdclient.c options.c conf.c command.c \
screen.c screen_utils.c screen_play.c screen_file.c \
screen_search.c screen_help.c screen_keydef.c screen_clock.c \
list_window.c colors.c support.c wreadln.c strfsong.c utils.c \
$(ncmpc_headers)
|