comparison Makefile.parallel @ 971:8da09834526d

* Valgrind support is now part of dstress.c instead of crashRun.c * fixed parallel build of test cases with multiple object files
author thomask
date Thu, 20 Apr 2006 08:50:01 +0000
parents 752d78bbb899
children 44b8263c91ea
comparison
equal deleted inserted replaced
970:3a6109fe74c5 971:8da09834526d
69 crashRun := ./crashRun 69 crashRun := ./crashRun
70 logsuffix := .outlog 70 logsuffix := .outlog
71 71
72 .PHONY:: all clean compile nocompile norun run tools version 72 .PHONY:: all clean compile nocompile norun run tools version
73 73
74 bug:
75 $(error not yet save for test cases involving multiple object files)
76
77 all :: version compile nocompile run norun 74 all :: version compile nocompile run norun
78 75
79 % : %.c 76 % : %.c
80 $(CC) $(CFLAGS) -DUSE_VALGRIND $< -o $@ 77 $(CC) $(CFLAGS) -DUSE_VALGRIND $< -o $@
81 78
139 $(RM) obj/[a-e]*.* 136 $(RM) obj/[a-e]*.*
140 $(RM) obj/[f-j]*.* 137 $(RM) obj/[f-j]*.*
141 $(RM) obj/[k-o]*.* 138 $(RM) obj/[k-o]*.*
142 $(RM) obj/[p-t]*.* 139 $(RM) obj/[p-t]*.*
143 $(RM) obj/[u-z]*.* 140 $(RM) obj/[u-z]*.*
144 $(RM) obj/?*.* 141 $(RM) -rf obj/*
145 $(RM) run.sh norun.sh compile.sh nocompile.sh 142 $(RM) run.sh norun.sh compile.sh nocompile.sh
146 $(RM) $(dstress) $(crashRun) 143 $(RM) $(dstress) $(crashRun)
147 144