blob: a422d765e61b46fe7323d7933d329908232fcc8c (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
|
SUBDIRS = icons
# This is used in MATECC_CAPPLETS_CFLAGS
cappletname = mate-default-applications-properties
bin_PROGRAMS = mate-default-applications-properties
BUILT_SOURCES = \
mate-default-applications-properties-resources.h \
mate-default-applications-properties-resources.c
mate_default_applications_properties_LDADD = $(MATECC_CAPPLETS_LIBS)
nodist_mate_default_applications_properties_SOURCES = \
$(BUILT_SOURCES)
mate_default_applications_properties_SOURCES = \
mate-da-capplet.c mate-da-capplet.h
@INTLTOOL_DESKTOP_RULE@
desktopdir = $(datadir)/applications
Desktop_in_files = mate-default-applications-properties.desktop.in
desktop_DATA = $(Desktop_in_files:.desktop.in=.desktop)
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = mate-default-applications.pc
AM_CPPFLAGS = \
$(MATECC_CAPPLETS_CFLAGS) \
$(DEFAULT_APPLICATIONS_CAPPLET_CFLAGS) \
-DAPPLICATIONSDIR=\""$(datadir)/applications"\"\
-DMATELOCALEDIR=\""$(datadir)/locale"\"
mate-default-applications-properties-resources.h mate-default-applications-properties-resources.c: org.mate.mcc.da.gresource.xml Makefile $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies --sourcedir $(srcdir) $(srcdir)/org.mate.mcc.da.gresource.xml)
$(AM_V_GEN) XMLLINT=$(XMLLINT) $(GLIB_COMPILE_RESOURCES) --target $@ --sourcedir $(srcdir) --generate --c-name default_applications $<
CLEANFILES = $(MATECC_CAPPLETS_CLEANFILES) $(desktop_DATA) $(autostart_DATA) $(BUILT_SOURCES)
EXTRA_DIST = \
mate-default-applications.pc.in \
mate-default-applications-properties.ui \
$(Desktop_in_files) \
org.mate.mcc.da.gresource.xml
-include $(top_srcdir)/git.mk
|