/* 
 * Program XBLAST V2.5.17
 * 1993-1999 (C) by Oliver Vogel (e-mail: vogel@ikp.uni-koeln.de)
 *
 * File: Imakefile
 * April 2nd, 1999
 * started August 1993
 *
 * $Id: Imakefile.normal,v 1.1 1999/04/02 18:36:33 xblast Exp xblast $
 * $Log: Imakefile.normal,v $
 * Revision 1.1  1999/04/02 18:36:33  xblast
 * Initial revision
 *
 */

#define IHaveSubdirs
SUBDIRS=bitmap

/*
 * Library-path for xblast
 * (edit and uncomment 2nd line for private installation)
 * 
XBLASTDIR=$(LIBDIR)/xblast
# XBLASTDIR=/home/olli/.xblast

/*
 * Path for Application-Defaults 
 * (edit and uncomment for private installation)
 */
# XAPPLOADDIR=/home/olli/.xblast

/*
 * If you want to have sound, comment the following line
 * Set SOUND_DIR to the directory, where the sounds can be found
 */
EXTRA_DEFINES=-DXBLASTDIR=\"$(XBLASTDIR)\" -DAPPLOADDIR=\"$(XAPPLOADDIR)\" \
		-DMONO_XBLAST

/*
 * Libraries needed for XBlast 
 * (The Solaris setting is very conservative)
 */
#ifdef SOLARIS
DEPLIBS=$(DEPXTOOLLIB) $(DEPXLIB)
LOCAL_LIBRARIES=$(XTOOLLIB) $(XLIB) -lSM -lICE
#else
DEPLIBS=$(DEPXLIB)
LOCAL_LIBRARIES=$(XLIB)
#endif

/*
 * source and object files for 
 */
SRCS = bomb.c data.c demo.c event.c func.c graphics.c image.c info.c intro.c \
	main.c map.c maze.c mystring.c player.c pipe.c setup.c shrink.c \
	sprite.c status.c util.c 
OBJS = bomb.o data.o demo.o event.o func.o graphics.o image.o info.o intro.o \
	main.o map.o maze.o mystring.o player.o pipe.o setup.o shrink.o \
	sprite.o status.o util.o 

/*
 * rules to build XBlast and ApplDefault
 */
AllTarget(xblast)
ComplexProgramTarget(xblast)
InstallAppDefaults(XBlast)





