/* 
 * Program XBLAST V2.1.11 
 * 1993-1996 (C) by Oliver Vogel (e-mail: vogel@ikp.uni-koeln.de)
 *
 * File: tkXBlast/Imakefile
 *  Imakefile for settting up and installing tkXBlast
 * November 17th, 1996
 * started August 1993
 */

/*
 * XBlast directories
 */
XBLASTDIR=$(LIBDIR)/xblast
TKXBLASTDIR=$(XBLASTDIR)/tkXBlast
TKXBLAST=tkXBlast


AllTarget($(TKXBLAST))

/*
 * rules to build valid tkXBlast script
 */
$(TKXBLAST): tkXBlast.tcl
	./setup $(LIBDIR) $(BINDIR) $(TKXBLASTDIR) 
InstallNamedProg($(TKXBLAST),$(TKXBLAST),$(BINDIR))
InstallManPage($(TKXBLAST),$(MANDIR))

/*
 * rules to install needed bitmaps
 */
BITMAPS = P_armslegs.xbm P_backpack.xbm P_body.xbm P_face.xbm P_frame.xbm \
	  P_handsfeet.xbm P_helmet.xbm bg.xbm big_1.xbm big_2.xbm \
	  dark_text_1.xbm dark_text_2.xbm light_text_1.xbm light_text_2.xbm \
	  player_1_4.xbm player_2_4.xbm player_3_4.xbm player_4_4.xbm \
	  player_5_4.xbm player_6_4.xbm winner_1.xbm winner_2.xbm winner_3.xbm \
	  winner_4.xbm winner_5.xbm winner_6.xbm winner_mask.xbm

InstallMultiple($(BITMAPS),$(TKXBLASTDIR))

/*
 * remove intermediate script
 */
clean::
	$(RM) $(TKXBLAST)

