blob: c55eef340e6a17b97584b0d45a9107a533af8a44 (
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=TraditionalOkTest
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/desktop! \
< $< > $@
|