blob: 7cea371631bbb6bf90b29a5e95fa44b799b5a48d (
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
|
THEME_NAME=Aldabra
themedir = $(datadir)/themes/$(THEME_NAME)
theme_DATA = index.theme
EXTRA_DIST = $(theme_DATA)
SUBDIRS = \
gtk-2.0 \
gtk-3.0 \
metacity-1
DIST_SUBDIRS = \
gtk-2.0 \
gtk-3.0 \
metacity-1
CLEANFILES = index.theme
index.theme: index.theme.in
$(AM_V_GEN)sed \
-e s!\@BACKGROUND_DIR\@!$(datadir)/pixmaps/backgrounds/mate/abstract! \
< $< > $@
|