/* 
 * Program XBLAST V2.1.10
 * 1993-1996 (C) by Oliver Vogel (e-mail: vogel@ikp.uni-koeln.de)
 *
 * File: Imakefile
 * November 5th, 1996
 * started August 1993
 */

#define IHaveSubdirs
SUBDIRS=bitmap image

XBLASTDIR=$(LIBDIR)/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)\"

/*
 * 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
 */
ComplexProgramTarget(xblast)
InstallAppDefaults(XBlast)





