diff -r e08b96365d76 -r 44346cc94ec4 s/benchmarks/micro/Make.spec --- a/s/benchmarks/micro/Make.spec Mon Mar 21 23:47:50 2016 +0100 +++ b/s/benchmarks/micro/Make.spec Mon Aug 28 21:41:34 2017 +0100 @@ -22,7 +22,7 @@ # (if removed, they will be created as common # -Pxxx : defines the package # -Zxxx : a prefix for variables within the classLib -# -Dxxx : defines passed to to CC for inline C-code +# -Dxxx : defines passed to CC for inline C-code # -Ixxx : include path passed to CC for inline C-code # +optspace : optimized for space # +optspace2 : optimized more for space @@ -51,19 +51,25 @@ STCWARNINGS=-warnNonStandard COMMON_CLASSES= \ + BenchmarkLocking \ BenchmarkMicroStringConcat \ BenchmarkMicroStringConcatN \ BenchmarkPerform \ jv_calipel_s_benchmarks_micro \ + BenchmarkRecursionLock \ + BenchmarkSemaphore \ COMMON_OBJS= \ - $(OUTDIR_SLASH)BenchmarkMicroStringConcat.$(O) \ - $(OUTDIR_SLASH)BenchmarkMicroStringConcatN.$(O) \ - $(OUTDIR_SLASH)BenchmarkPerform.$(O) \ - $(OUTDIR_SLASH)jv_calipel_s_benchmarks_micro.$(O) \ + $(OUTDIR)BenchmarkLocking.$(O) \ + $(OUTDIR)BenchmarkMicroStringConcat.$(O) \ + $(OUTDIR)BenchmarkMicroStringConcatN.$(O) \ + $(OUTDIR)BenchmarkPerform.$(O) \ + $(OUTDIR)jv_calipel_s_benchmarks_micro.$(O) \ + $(OUTDIR)BenchmarkRecursionLock.$(O) \ + $(OUTDIR)BenchmarkSemaphore.$(O) \