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