1AUTOMAKE_OPTIONS = 1.9 foreign
2
3bin_PROGRAMS	 = ezstream
4bin_SCRIPTS	 = ezstream-file.sh
5
6ezstream_SOURCES = \
7	compat.c \
8	configfile.c \
9	ezstream.c \
10	getopt.c \
11	metadata.c \
12	playlist.c \
13	util.c \
14	xalloc.c
15ezstream_LDADD	 = @LIBOBJS@ @EZ_LIBS@
16
17INCLUDES	 = @COMPAT_INCLUDES@
18AM_CFLAGS	 = @EZ_CFLAGS@
19AM_CPPFLAGS	 = @EZ_CPPFLAGS@
20AM_LDFLAGS	 = @EZ_LDFLAGS@
21
22EXTRA_DIST	 = \
23	configfile.h \
24	ezstream.h \
25	metadata.h \
26	playlist.h \
27	strfctns.h \
28	util.h \
29	xalloc.h
30
31CLEANFILES	 = core *.core *~ .*~
32