diff Makefile @ 490:d091ff903fa4

added crashRun for POSIX systems
author thomask
date Wed, 27 Apr 2005 11:54:12 +0000
parents 368156152168
children 03a5d1fe1283
line wrap: on
line diff
--- a/Makefile	Wed Apr 27 05:52:26 2005 +0000
+++ b/Makefile	Wed Apr 27 11:54:12 2005 +0000
@@ -84,6 +84,7 @@
 ifeq__		:= ./ifeq__
 extract__	:= ./extract__
 dstress__	:= ./dstress__
+crashRun__	:= ./crashRun__
 
 # settings
 to_log 		:= >> $(LOG) 2>&1
@@ -118,7 +119,10 @@
 $(extract__) : extract__.c Makefile
 	$(CC) $(CFLAGS) $< -o $@
 
-$(dstress__) : dstress.c Makefile
+$(dstress__) : dstress.c $(crashRun__) Makefile
+	$(CC) $(CFLAGS) $< -o $@
+
+$(crashRun__) : crashRun.c Makefile
 	$(CC) $(CFLAGS) $< -o $@
 
 basic_tools : $(ifeq__) $(return__) $(extract__) $(dstress__)
@@ -296,7 +300,7 @@
 #
 distclean : clean_log clean
 	$(RM) $(shell $(FIND) . -regex ".*~") $(shell $(FIND) . -regex "\\..*\\.swp") $(shell $(FIND) . -regex "#.*#")
-	$(RM) $(return__) $(ifeq__) $(extract__) $(dstress__) www/*.class
+	$(RM) $(crashRun__) $(return__) $(ifeq__) $(extract__) $(dstress__) www/*.class
 
 #
 # remove compiler and assertion messages