summaryrefslogtreecommitdiff
path: root/capplets/appearance/Makefile.am
blob: 585ca345a7298dc6f05781ef22cfe493d32256d6 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
NULL =

SUBDIRS = data

# This is used in GNOMECC_CAPPLETS_CFLAGS
cappletname = appearance

INCLUDES = \
	$(METACITY_CFLAGS) \
	-I$(top_srcdir)/libgnome-control-center-extension	\
	$(GNOMECC_CAPPLETS_CFLAGS) \
	$(FONT_CAPPLET_CFLAGS) \
	-DGNOMELOCALEDIR="\"$(datadir)/locale\"" \
	-DGNOMECC_DATA_DIR="\"$(pkgdatadir)\"" \
	-DGNOMECC_UI_DIR="\"$(uidir)\"" \
	-DGNOMECC_PIXMAP_DIR="\"$(pixmapdir)\"" \
	-DWALLPAPER_DATADIR="\"$(wallpaperdir)\""

AM_CFLAGS = -DGNOME_DESKTOP_USE_UNSTABLE_API

noinst_LTLIBRARIES = libappearance-common.la

bin_PROGRAMS = gnome-appearance-properties

libappearance_common_la_SOURCES = \
	theme-installer.c \
	theme-installer.h \
	theme-save.c \
	theme-save.h \
	theme-util.c \
	theme-util.h

ccmodulesdir = $(EXTENSIONSDIR)
ccmodules_LTLIBRARIES = libappearance.la

libappearance_la_SOURCES =		\
	appearance-module.c		\
	cc-backgrounds-monitor.h	\
	cc-backgrounds-monitor.c	\
	cc-background-item.h		\
	cc-background-item.c		\
	cc-background-page.h		\
	cc-background-page.c		\
	cc-theme-save-dialog.h		\
	cc-theme-save-dialog.c		\
	cc-theme-page.h			\
	cc-theme-page.c			\
	cc-appearance-panel.h		\
	cc-appearance-panel.c		\
	$(NULL)

libappearance_la_LDFLAGS =		\
	$(EXTENSION_LIBTOOL_FLAGS)	\
	$(NULL)

libappearance_la_LIBADD =		\
	libappearance-common.la		\
	$(EXTENSION_LIBS)		\
	$(EXTENSION_COMMON_LIBS)	\
	$(NULL)

libappearance_la_CFLAGS =		\
	$(EXTENSION_CFLAGS)		\
	$(EXTENSION_COMMON_CFLAGS)	\
	$(NULL)

libappearance_la_LIBTOOLFLAGS = --tag=disable-static

gnome_appearance_properties_SOURCES = \
	appearance.h \
	appearance-desktop.c \
	appearance-desktop.h \
	appearance-font.c \
	appearance-font.h \
	appearance-themes.c \
	appearance-themes.h \
	appearance-style.c \
	appearance-style.h \
	gedit-message-area.c \
	gedit-message-area.h \
	gnome-wp-info.c \
	gnome-wp-info.h \
	gnome-wp-item.c \
	gnome-wp-item.h \
	gnome-wp-xml.c \
	gnome-wp-xml.h \
	appearance-main.c

gnome_appearance_properties_LDADD = \
	libappearance-common.la \
	$(top_builddir)/libwindow-settings/libgnome-window-settings.la \
	$(top_builddir)/libgnome-control-center-extension/libcommon.la \
	$(GNOMECC_CAPPLETS_LIBS) \
	$(FONT_CAPPLET_LIBS) \
	$(METACITY_LIBS)
gnome_appearance_properties_LDFLAGS = -export-dynamic

uidir = $(pkgdatadir)/ui
pixmapdir = $(pkgdatadir)/pixmaps
wallpaperdir = $(datadir)/gnome-background-properties

CLEANFILES = $(GNOMECC_CAPPLETS_CLEANFILES)

-include $(top_srcdir)/git.mk