Index: neither/darkwar/Makefile
diff -u neither/darkwar/Makefile:1.14 neither/darkwar/Makefile:1.15
--- neither/darkwar/Makefile:1.14	Mon Mar 29 12:07:44 2004
+++ neither/darkwar/Makefile	Fri Apr  2 21:42:46 2004
@@ -11,12 +11,12 @@
 
 ##### Common variables #####
 
-OBJECTS= polygon.o crc.o cvar.o hash.o dwmain.o nconsole.o nmemory.o nstring.o nfile.o nimage.o matrixlib.o dwmesh.o renderer/dyngl.o renderer/dynglstubs.o renderer/ngl.o renderer/ntextures.o renderer/main.o dwinput.o dwmap.o dwgame.o game/particle.o fs/dir.o fs/dir_posix.o fs/fs.o fs/fs_new.o fs/pak.o fs/rw_ops.o
+OBJECTS= polygon.o crc.o cvar.o hash.o dwmain.o nconsole.o nmemory.o nstring.o nfile.o nimage.o matrixlib.o dwmesh.o renderer/dyngl.o renderer/dynglstubs.o renderer/ngl.o renderer/ntextures.o renderer/main.o dwinput.o dwmap.o dwgame.o game/particle.o game/g_explosion.o game/g_rain.o fs/dir.o fs/dir_posix.o fs/fs.o fs/fs_new.o fs/pak.o fs/rw_ops.o
 
 CC=gcc
 # CFLAGS=-MD -Wall -O2 -Icommon -Werror
-CFLAGS=-MD -Wall -g -ggdb `sdl-config --cflags` -I.
-#CFLAGS=-mcpu=athlon -MD -Wall -O2 -pg -g -ggdb `sdl-config --cflags` -I.
+#CFLAGS=-MD -Wall -g -ggdb `sdl-config --cflags` -I.
+CFLAGS=-mcpu=athlon-xp -MD -Wall -O2 -pg -g -ggdb `sdl-config --cflags` -I.
 #CFLAGS=-MD -Wall -O2 `sdl-config --cflags` -I.
 
 ##### Commands #####
Index: neither/darkwar/SConstruct
diff -u neither/darkwar/SConstruct:1.12 neither/darkwar/SConstruct:1.13
--- neither/darkwar/SConstruct:1.12	Sun Mar 28 13:22:10 2004
+++ neither/darkwar/SConstruct	Fri Apr  2 21:42:46 2004
@@ -11,7 +11,7 @@
 
 sources = Split("""crc.c cvar.c hash.c dwgame.c dwinput.c dwmain.c dwmap.c nconsole.c nmemory.c nstring.c nfile.c nimage.c matrixlib.c""")
 sources.extend (Split("renderer/dyngl.c renderer/dynglstubs.c renderer/ngl.c renderer/ntextures.c renderer/main.c"))
-sources.extend (Split("game/particle.c"))
+sources.extend (Split("game/particle.c game/g_explosion.c game/g_rain.c"))
 sources.extend (Split("fs/fs.c fs/fs_new.c fs/rw_ops.c fs/pak.c fs/dir.c"))
 sources.extend (['fs/' + opts['dir_mode'] + '.c'])
 env.Program (target = "darkwar", source = sources)