diff options
author | Flavio Ceolin <flavio.ceolin@gmail.com> | 2014-08-09 00:29:07 -0300 |
---|---|---|
committer | Flavio Ceolin <flavio.ceolin@gmail.com> | 2014-08-14 23:38:49 -0300 |
commit | 77fb1afabb5721f785111d9ee12764cd742f23b5 (patch) | |
tree | f4100fab097c322600e785facb00246a8c292359 /Makefile.am | |
parent | b68c9f556b594fadb7ac43520bb00b8376d418d3 (diff) |
Removed all references to epulse
The stand alone application is called now emixer, it makes more sense
since it was introduced multiple backends.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Makefile.am b/Makefile.am index d701f9e..b16e34d 100644 --- a/Makefile.am +++ b/Makefile.am | |||
@@ -27,13 +27,10 @@ lib_LTLIBRARIES = \ | |||
27 | src/lib/libemix.la | 27 | src/lib/libemix.la |
28 | 28 | ||
29 | includes_HEADERS = \ | 29 | includes_HEADERS = \ |
30 | src/lib/common.h | ||
31 | src/lib/emix.h | 30 | src/lib/emix.h |
32 | includesdir = $(includedir)/emix | 31 | includesdir = $(includedir)/emix |
33 | 32 | ||
34 | src_lib_libemix_la_SOURCES = \ | 33 | src_lib_libemix_la_SOURCES = \ |
35 | src/lib/common.h \ | ||
36 | src/lib/common.c \ | ||
37 | src/lib/emix.h \ | 34 | src/lib/emix.h \ |
38 | src/lib/emix.c | 35 | src/lib/emix.c |
39 | 36 | ||
@@ -76,13 +73,15 @@ src_lib_backends_alsa_module_la_LIBTOOLFLAGS = --tag=disable-static | |||
76 | endif | 73 | endif |
77 | 74 | ||
78 | bin_PROGRAMS = \ | 75 | bin_PROGRAMS = \ |
79 | src/bin/epulse | 76 | src/bin/emixer |
80 | 77 | ||
81 | src_bin_epulse_LDADD = \ | 78 | src_bin_emixer_LDADD = \ |
82 | $(top_builddir)/src/lib/libemix.la \ | 79 | $(top_builddir)/src/lib/libemix.la \ |
83 | @EFL_LIBS@ | 80 | @EFL_LIBS@ |
84 | 81 | ||
85 | src_bin_epulse_SOURCES = \ | 82 | src_bin_emixer_SOURCES = \ |
83 | src/bin/common.h \ | ||
84 | src/bin/common.c \ | ||
86 | src/bin/main_window.h \ | 85 | src/bin/main_window.h \ |
87 | src/bin/main_window.c \ | 86 | src/bin/main_window.c \ |
88 | src/bin/playbacks_view.h \ | 87 | src/bin/playbacks_view.h \ |
@@ -113,10 +112,10 @@ SUBDIRS = po | |||
113 | include Makefile_Theme.am | 112 | include Makefile_Theme.am |
114 | 113 | ||
115 | iconsdir = $(datadir)/icons | 114 | iconsdir = $(datadir)/icons |
116 | icons_DATA = data/icons/epulse.png | 115 | icons_DATA = data/icons/emixer.png |
117 | 116 | ||
118 | desktopdir = $(datadir)/applications | 117 | desktopdir = $(datadir)/applications |
119 | desktop_DATA = data/xml/epulse.desktop | 118 | desktop_DATA = data/xml/emixer.desktop |
120 | 119 | ||
121 | EXTRA_DIST += \ | 120 | EXTRA_DIST += \ |
122 | $(icons_DATA) \ | 121 | $(icons_DATA) \ |