blob: f5942a38eaa281e44aeddafe567294b0d0c17a38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
THEME_NAME = BlackMATE
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 = \
gtk-2.0 \
gtk-3.0 \
metacity-1 \
cinnamon \
unity \
apps
CLEANFILES = index.theme
EXTRA_DIST = $(theme_in_files)
|