add gui
[gst-scaletempo-demo-rj.git] / src / Makefile.am
blob8c2ceb301cb1689a3e91362b2d7885270474b302
1 # name of your binary
2 bin_PROGRAMS = gst-app
4 # list of source files
5 # the prefix is the name of the binary
6 gst_app_SOURCES = main.c play.c gui.c
8 # list of headers we're not going to install
9 noinst_HEADERS = gst-app.h play.h 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 gst_app_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GTK_CFLAGS) -Wall -g -O2
16 gst_app_LDFLAGS = $(GST_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GTK_LIBS)