blob: 3c26d9deb50428ae8d8aaf0c1483c664331f7a01 (
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 = BlueMenta
theme_in_files = index.theme.in
themedir = $(datadir)/themes/$(THEME_NAME)
theme_DATA = COPYING index.theme README
%.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 = \
cinnamon \
emerald \
gtk-2.0 \
gtk-3.0 \
metacity-1 \
unity \
xfwm4
CLEANFILES = index.theme
EXTRA_DIST = $(theme_in_files)
|