diff options
author | Stefano Karapetsas <[email protected]> | 2011-12-11 13:11:15 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2011-12-11 13:11:15 +0100 |
commit | 4ee2559eaaf2a94ac26c265517e9604a72729360 (patch) | |
tree | f24e3e3294c2b75819755289e592bf2e28e668c4 /gst-mixer/src/Makefile.am | |
download | mate-media-4ee2559eaaf2a94ac26c265517e9604a72729360.tar.bz2 mate-media-4ee2559eaaf2a94ac26c265517e9604a72729360.tar.xz |
moved from Mate-Extra
Diffstat (limited to 'gst-mixer/src/Makefile.am')
-rw-r--r-- | gst-mixer/src/Makefile.am | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/gst-mixer/src/Makefile.am b/gst-mixer/src/Makefile.am new file mode 100644 index 0000000..d85a6b9 --- /dev/null +++ b/gst-mixer/src/Makefile.am @@ -0,0 +1,42 @@ + +if HAVE_SOUND_THEME +GVC_ST_LIBS = $(SOUND_THEME_LIBS) \ + $(top_builddir)/sound-theme/libsoundtheme.la +endif + +AM_CPPFLAGS = \ + $(GSTMIXER_CFLAGS) \ + $(DISABLE_DEPRECATED) \ + -I$(top_srcdir)/sound-theme \ + -DMATELOCALEDIR=\""$(datadir)/locale"\" \ + -DDATA_DIR=\""$(pkgdatadir)"\" \ + -DPIX_DIR=\""$(pkgdatadir)/pixmaps"\" + +bin_PROGRAMS = mate-volume-control + +mate_volume_control_SOURCES = \ + button.c \ + element.c \ + main.c \ + preferences.c \ + track.c \ + volume.c \ + window.c \ + misc.c + +noinst_HEADERS = \ + button.h \ + element.h \ + keys.h \ + preferences.h \ + track.h \ + volume.h \ + window.h \ + misc.h + +mate_volume_control_LDFLAGS = \ + $(GVC_ST_LIBS) \ + $(GSTMIXER_LIBS) + + +-include $(top_srcdir)/git.mk |