blob: 9492b9fa1cd5f9ba969ab62ef27f8501b4b7a265 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
THEME_NAME = TraditionalOk
theme_in_files = index.theme.in
themedir = $(datadir)/themes/$(THEME_NAME)
theme_DATA = COPYING index.theme
%.theme: %.theme.in
if USE_NLS
$(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
else
$(AM_V_GEN) cp -f $< $@
endif
SUBDIRS = \
gtk-2.0 \
gtk-3.0 \
metacity-1 \
openbox-3 \
xfwm4
CLEANFILES = index.theme
EXTRA_DIST = $(theme_in_files)
|