blob: 6107d3d40bd4f71b1960d741c696ab2ab9b58113 (
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
|
THEME_NAME = HighContrastInverse
themedir = $(datadir)/themes/$(THEME_NAME)
theme_in_files = index.theme.in
theme_DATA = $(theme_in_files:.theme.in=.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 = \
metacity-1 \
pixmaps
if ENABLE_GTK2
SUBDIRS += gtk-2.0
endif
DIST_SUBDIRS = \
gtk-2.0 \
metacity-1 \
pixmaps
CLEANFILES = index.theme
EXTRA_DIST = $(theme_in_files)
|