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