blob: 58800fa3b01ba9f14de1feec4009f2eaff270d92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
## Process this file with automake to produce Makefile.in
AM_CPPFLAGS = \
-DMATELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
-I$(top_srcdir) \
-I$(top_srcdir)/grecord/src/recent-files/ \
$(GSR_CFLAGS) \
$(DISABLE_DEPRECATED) \
-DDATADIR=\""$(datadir)"\" \
-DGSR_DATADIR=\""$(datadir)/mate-sound-recorder"\" \
-DGSR_UIDIR=\""$(datadir)/mate-sound-recorder/ui/"\"
bin_PROGRAMS = mate-sound-recorder
mate_sound_recorder_SOURCES = \
mate-recorder.c \
gsr-window.c \
gsr-window.h
uidir = $(datadir)/mate-sound-recorder/ui
ui_DATA = ui.xml
EXTRA_DIST = $(ui_DATA)
mate_sound_recorder_LDADD = \
-lm \
$(GSR_LIBS) -lgstinterfaces-@GST_MAJORMINOR@ \
$(top_builddir)/profiles/libmate-media-profiles.la
-include $(top_srcdir)/git.mk
|