blob: c51d60cba02eef78d4269f9974ec16c1a37192b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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 = \
gtk-2.0 \
metacity-1 \
pixmaps
CLEANFILES = index.theme
EXTRA_DIST = $(theme_in_files)
|