--- XBlast-TNT/Imakefile	2001-08-16 22:13:22.000000000 +0200
+++ Imakefile	2003-01-29 00:57:56.000000000 +0100
@@ -20,12 +20,12 @@
 /*
  * compiler specifc flags (uncomment and edit if needed)
  */
-# CDEBUGFLAGS=-g -O2
-# CCOPTIONS=-ansi -Wall -pedantic 
+CDEBUGFLAGS=-O2
+CCOPTIONS=-ansi -Wall -pedantic -pipe
 EXTRA_DEFINES=-DXBLASTDIR=\"$(XBLASTDIR)\" -DAPPLOADDIR=\"$(XAPPLOADDIR)\" \
-	-DDEBUG # -DDEBUG_PIXMAP
+	#-DDEBUG # -DDEBUG_PIXMAP
 
-SRCS=xblast.c util.c str_util.c intro.c introdat.c map.c sprite.c \
+XBLAST_SRCS=xblast.c util.c str_util.c intro.c introdat.c map.c sprite.c \
 	color.c status.c player.c action.c bomb.c event.c image.c \
 	shrink.c func.c info.c ini_file.c atom.c scramble.c \
 	demo.c debug.c level.c random.c \
@@ -45,7 +45,7 @@
 	x11_common.c x11_event.c x11_atom.c x11_config.c x11_msgbox.c\
 	x11c_init.c x11c_image.c x11c_text.c x11c_tile.c x11c_sprite.c \
 	x11c_pixmap.c x11_sound.c x11_socket.c x11_joystick.c
-OBJS=xblast.o util.o str_util.o intro.o introdat.o map.o sprite.o \
+XBLAST_OBJS=xblast.o util.o str_util.o intro.o introdat.o map.o sprite.o \
 	color.o status.o player.o bomb.o action.o event.o image.o \
 	shrink.o func.o info.o ini_file.o atom.o scramble.o \
 	demo.o debug.o level.o random.o \
@@ -67,4 +67,12 @@
 	x11c_pixmap.o x11_sound.o x11_socket.o x11_joystick.o 
 
 AllTarget(xblast)
-ComplexProgramTarget(xblast)
+NormalProgramTarget(xblast,$(XBLAST_OBJS),$(DEPLIBS),$(LOCAL_LIBRARIES),NullParameter)
+InstallProgram(xblast,$(BINDIR))
+
+XBLASTSND_OBJS=xbsndsrv.o
+ 
+AllTarget(xbsndsrv)
+NormalProgramTarget(xbsndsrv,$(XBLASTSND_OBJS),NullParameter,NullParameter,NullParameter)
+InstallProgram(xbsndsrv,$(BINDIR))
+

