summaryrefslogtreecommitdiffstats
path: root/examples/Makefile.am
blob: 15df761140e10cf28367c731908c5c5474671348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
bin_PROGRAMS= example
example_SOURCES= example.c
example_LDADD= ../src/librcc.la

if HAVE_GTK
bin_PROGRAMS+= rcc-gtk-config
rcc_gtk_config_SOURCES = rcc-gtk-config.c
rcc_gtk_config_LDADD=../ui/librccgtk.la @GTK_LIBS@
endif

EXTRA_DIST= input-russian.txt rcc.xml rcc-example.xml mpg123-rcc.patch

test-russian: example
	cat input-russian.txt | ./example

INCLUDES = -I../src -I../ui @GTK_INCLUDES@