Release 1
[gst-scaletempo-demo-rj.git] / src / Makefile.am
bloba6c004c340b42fa426d50087dda6649e7532f25c
1 # name of your binary
2 bin_PROGRAMS = scaletempo-demo
4 # list of source files
5 # the prefix is the name of the binary
6 scaletempo_demo_SOURCES = demo-main.c demo-player.c demo-gui.c
8 # list of headers we're not going to install
9 noinst_HEADERS = demo-player.h demo-gui.h
11 # our CFLAGS and LDFLAGS used for compiling and linking
12 # make sure you prefix these with the name of your binary
13 GTK_CFLAGS = $(shell pkg-config --cflags gtk+-2.0)
14 GTK_LIBS = $(shell pkg-config --libs gtk+-2.0)
15 scaletempo_demo_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GTK_CFLAGS) -Wall -g
16 scaletempo_demo_LDFLAGS = $(GST_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GTK_LIBS) -lgstinterfaces-0.10