blob: 5c5dc2cac585d83477bdd3d18bddc647138da27d (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
SUBDIRS = data
# This is used in MATECC_CAPPLETS_CFLAGS
cappletname = appearance
bin_PROGRAMS = mate-appearance-properties
mate_appearance_properties_SOURCES = \
appearance.h \
appearance-desktop.c \
appearance-desktop.h \
appearance-font.c \
appearance-font.h \
appearance-main.c \
appearance-themes.c \
appearance-themes.h \
appearance-style.c \
appearance-style.h \
mate-wp-info.c \
mate-wp-info.h \
mate-wp-item.c \
mate-wp-item.h \
mate-wp-xml.c \
mate-wp-xml.h \
theme-installer.c \
theme-installer.h \
theme-save.c \
theme-save.h \
theme-util.c \
theme-util.h
AM_CFLAGS = -DMATE_DESKTOP_USE_UNSTABLE_API
mate_appearance_properties_LDADD = \
$(top_builddir)/libwindow-settings/libmate-window-settings.la \
$(top_builddir)/capplets/common/libcommon.la \
$(MATECC_CAPPLETS_LIBS) \
$(FONT_CAPPLET_LIBS) \
$(MARCO_LIBS)
mate_appearance_properties_LDFLAGS = -export-dynamic
gtkbuilderdir = $(pkgdatadir)/ui
pixmapdir = $(pkgdatadir)/pixmaps
wallpaperdir = $(datadir)/mate-background-properties
INCLUDES = \
$(MARCO_CFLAGS) \
$(MATECC_CAPPLETS_CFLAGS) \
$(FONT_CAPPLET_CFLAGS) \
-DMATELOCALEDIR="\"$(datadir)/locale\"" \
-DMATECC_DATA_DIR="\"$(pkgdatadir)\"" \
-DMATECC_GTKBUILDER_DIR="\"$(gtkbuilderdir)\"" \
-DMATECC_PIXMAP_DIR="\"$(pixmapdir)\"" \
-DWALLPAPER_DATADIR="\"$(wallpaperdir)\""
CLEANFILES = $(MATECC_CAPPLETS_CLEANFILES)
-include $(top_srcdir)/git.mk
|