library implementation skeleton added
[omnplay] / 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         @GTHREAD_CFLAGS@ @GTK_CFLAGS@ @OM_CFLAGS@ @CURL_CFLAGS@
7
8 bin_PROGRAMS = omnplay
9
10 omnplay_SOURCES = \
11         main.c \
12         support.c support.h \
13         ui.c ui.h ui_utils.h \
14         ui_buttons.c ui_buttons.h \
15         opts.c opts.h \
16         playlist.c \
17         library.c \
18         timecode.c timecode.h \
19         omnplay.cpp omnplay.h
20
21 omnplay_LDADD = @GTHREAD_LIBS@ @GTK_LIBS@ @OM_LIBS@ @CURL_LIBS@