Initial import from Charles Yates' v0.2 tarball.
[rugen] / src / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 INCLUDES = \
4         -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
5         -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
6         @PACKAGE_CFLAGS@
7
8 bin_PROGRAMS = rugen
9
10 rugen_SOURCES = \
11         main.c \
12         support.c support.h \
13         interface.c interface.h \
14         callbacks.c callbacks.h \
15         dv1394app.c dv1394app.h \
16         util.c util.h \
17         page.c page.h \
18         page_clips.c \
19         page_command.c \
20         page_status.c \
21         page_units.c \
22         gtkenhancedscale.c gtkenhancedscale.h
23
24 rugen_CFLAGS = `pkg-config --cflags gthread-2.0` `mlt-config miracle --cflags`
25 rugen_LDADD = @PACKAGE_LIBS@
26 rugen_LDFLAGS = `pkg-config --libs gthread-2.0` `mlt-config miracle --libs`
27