GObject boilerplate
[gst-scaletempo-demo-rj.git] / src / Makefile.am
blobedc84e8499bbc30d6c21b3c59bd3fe0181c9481b
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
8 # list of headers we're not going to install
9 noinst_HEADERS = demo-player.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