1# TiMidity++ -- MIDI to WAVE converter and player
2# Copyright (C) 1999-2002 Masanao Izumo <mo@goice.co.jp>
3# Copyright (C) 1995 Tuukka Toivonen <tt@cgs.fi>
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
19include $(top_srcdir)/common.makefile.in
20
21BITMAPS = \
22	arrow.xbm \
23	back.xbm \
24	check.xbm \
25	fast.xbm \
26	fwrd.xbm \
27	keydown.xbm \
28	keyup.xbm \
29	off.xbm \
30	on.xbm \
31	next.xbm \
32	pause.xbm \
33	play.xbm \
34	prev.xbm \
35	quit.xbm \
36	slow.xbm \
37	stop.xbm \
38	random.xbm \
39	repeat.xbm \
40	timidity.xbm
41
42EXTRA_DIST = $(BITMAPS)
43
44install.bitmaps: $(BITMAPS)
45	test -d $(DESTDIR)$(BITMAP_DIR) || mkdir -p $(DESTDIR)$(BITMAP_DIR)
46	for f in $(BITMAPS) ''; do case ".$$f" in .);; *) $(INSTALL) -m 644 $$f $(DESTDIR)$(BITMAP_DIR);; esac; done
47