summaryrefslogtreecommitdiffstats
path: root/patches/lmbench-3.0-a9/lmbench-3.0-a9-remove-old-buildsystem.diff
blob: 21c1ed39d14bdb4e4aa1d0f019c4277e4f7722fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
From: Robert Schwebel <r.schwebel@pengutronix.de>
Subject: Add autotool based build system

In order to provide an autotool based build system, remove the old one.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>

---
 Makefile         |   74 --------
 results/Makefile |  333 -------------------------------------
 src/Makefile     |  489 -------------------------------------------------------
 3 files changed, 896 deletions(-)

Index: lmbench-3.0-a9/Makefile
===================================================================
--- lmbench-3.0-a9.orig/Makefile
+++ /dev/null
@@ -1,74 +0,0 @@
-# Makefile for top level of lmbench
-# $Id$
-
-# Possible things to $(MAKE):
-#
-# build		(default) go to the source directory and build the benchmark
-# results	go to the source directory and build and run the benchmark
-# rerun		run the benchmark again
-# see		see the results that came with this release
-#		Go to the results directory and read the Makefile.
-# doc.lpr	print the documentation
-# doc.x		preview the documentation (needs X, groff, pic, etc)
-# clean		go to the subdirs and $(MAKE) clean
-# get		$(MAKE) sure all files are checked out
-# shar		build a shippable shar archive
-
-SHELL=/bin/sh
-
-build: 
-	cd src && $(MAKE)
-
-results: FRC
-	cd src && $(MAKE) results
-
-rerun: 
-	cd src && $(MAKE) rerun
-
-see:
-	cd results && $(MAKE) summary >summary.out 2>summary.errs 
-	cd results && $(MAKE) percent >percent.out 2>percent.errs 
-
-doc.lpr:
-	cd doc && $(MAKE) PS && lpr *.PS
-
-doc.x:
-	cd doc && $(MAKE) x
-
-clobber clean: 
-	for i in doc src results scripts; do \
-		echo ===== $$i =====; \
-		(cd $$i && $(MAKE) clean); \
-	done
-	/bin/rm -rf bin/*
-	-bk clean 
-
-get: 
-	for i in doc src results scripts; do \
-		echo ===== $$i =====; \
-		(cd $$i && bk get -q); \
-	done
-	@co -q
-
-info: 
-	for i in doc src results scripts; do \
-		echo ===== $$i =====; \
-		(cd $$i && info); \
-	done
-
-release: scripts/mkrelease
-	scripts/mkrelease
-
-scripts/mkrelease:
-	cd scripts && co mkrelease
-
-# XXX - . must be named lmbench for this to work
-shar:
-	$(MAKE) clean
-	co -q Makefile
-	$(MAKE) get
-	cd .. && \
-	find lmbench -type f -print  | egrep -v 'noship|RCS' > /tmp/FILES
-	cd .. && shar -S -a -n lmbench1.0 -L 50K < /tmp/FILES 
-
-FRC:
Index: lmbench-3.0-a9/results/Makefile
===================================================================
--- lmbench-3.0-a9.orig/results/Makefile
+++ /dev/null
@@ -1,333 +0,0 @@
-# Makefile for lmbench results.
-# $Id$
-#
-# Usage: make [ LIST="aix/* sunos/* ..." ] [ what ]
-#
-# What to make:
-#	print			Prints the results 1 per page.
-#	ps			Saves the postscript of 1 per page in PS/PS
-#	4.ps			Saves the postscript of 4 per page in PS/PS4
-#	8.ps			Saves the postscript of 8 per page in PS/PS8
-#	x			Previews 1 per page using groff -X
-#	summary	[default]	Ascii summary of the results
-#	stats			Do statistics over a set of results
-#	roff			Print the ascii summaries into a roff file
-#	slides			Makes the pic for inclusion in slides
-#
-# This Makefile requires groff, gpic, and perl.  You could try it with
-# other *roff processors; I have no idea if it works.
-#
-# XXX - this is all out of date.
-#
-# There are three sorts of graphical results:
-#
-# 1. Bargraphs comparing each system in the LIST on the measurements listed
-#    in the BG list below (pretty much everything).
-# 2. A 2-D graph for each system in LIST, displaying context switch times
-#    as a function of (# of processes, size of each process).
-# 3. A 2-D graph for each system in LIST, displaying memory read times as
-#    a function of (stride size, memory size).
-#
-# The bargraphs are in a format of my own - the perl script in scripts
-# called bargraph takes them as input and produces pic as output.
-# It is a pretty straightforward format, you could probably incorparate
-# into some Windows spreadsheet if you wanted to.  See tmp/*.bg after
-# running make in this directory.
-#
-# The 2-D graphs are in a format that can (probably) be read by Xgraph.
-# I've added a few extensions for titles, etc., that you could just
-# take out.  See tmp/mem.* after running a make in this directory.
-#
-# This Makefile is of marginal usefulness to a site with just one machine.
-# I intend to make results available so that people can compare, as well
-# as a service where you can compare your results against the "best of
-# the breed" for each vendor, as well as against best of the lot.
-
-# List of result files to process.  Defaults to everything.
-LIST=	`$(SCRIPTS)getlist $(LST)`	
-
-# Grrrrr
-SHELL=/bin/sh
-
-SCRIPTS=../scripts/
-SRCS= ../scripts/allctx ../scripts/allmem ../scripts/bargraph \
-	../scripts/bghtml ../scripts/getbg ../scripts/getbw \
-	../scripts/getctx ../scripts/getdisk ../scripts/getlist \
-	../scripts/getmax ../scripts/getmem ../scripts/getpercent \
-	../scripts/getresults ../scripts/getsummary ../scripts/gifs \
-	../scripts/graph ../scripts/html-list ../scripts/html-man \
-	../scripts/os ../scripts/percent ../scripts/save \
-	../scripts/stats ../scripts/xroff 
-
-MISC=	tmp/misc_mhz.bg \
-	tmp/lat_ctx.bg \
-	tmp/lat_ctx8.bg \
-	tmp/lat_nullsys.bg \
-	tmp/lat_signal.bg \
-	tmp/lat_pagefault.bg \
-	tmp/lat_mappings.bg \
-	tmp/lat_fs_create.bg
-
-PROC=	tmp/lat_nullproc.bg \
-	tmp/lat_simpleproc.bg \
-	tmp/lat_shproc.bg
-
-LATENCY= \
-	tmp/lat_pipe.bg \
-	tmp/lat_connect.bg \
-	tmp/lat_udp_local.bg \
-	tmp/lat_rpc_udp_local.bg \
-	tmp/lat_tcp_local.bg  \
-	tmp/lat_rpc_tcp_local.bg 
-
-BANDWIDTH= \
-	tmp/bw_pipe.bg \
-	tmp/bw_tcp_local.bg \
-	tmp/bw_file.bg \
-	tmp/bw_reread.bg \
-	tmp/bw_mmap.bg \
-	tmp/bw_bcopy_libc.bg \
-	tmp/bw_bcopy_unrolled.bg \
-	tmp/bw_mem_rdsum.bg \
-	tmp/bw_mem_wr.bg
-
-BG=	$(MISC) $(PROC) $(LATENCY) $(BANDWIDTH)
-
-MK=@$(MAKE) -s
-PRINT=groff -p | lpr -h
-PS=groff -p | $(SCRIPTS)save PS/PS
-PS8UP=groff -p | mpage -P- -8 -a | $(SCRIPTS)save PS/PS8
-PS4UP=groff -p | mpage -P- -4 -a | $(SCRIPTS)save PS/PS4
-SIZE=-big 
-IMAGE=pbm
-CLOSE=
-GMEM=$(CLOSE) -grid -logx -xm -below
-GCTX=$(CLOSE) -grid -below
-GDISK=-below -close -grid -nolines
-#IMAGE=gifmono
-
-summary: $(SRCS)
-	@$(SCRIPTS)getsummary $(LIST)
-
-percent: $(SRCS)
-	@$(SCRIPTS)getpercent $(LIST)
-
-stats: $(SRCS)
-	$(SCRIPTS)getsummary $(LIST) | $(SCRIPTS)percent
-
-roff:
-	echo .nf	> summary.roff
-	echo .ft CB	>> summary.roff
-	echo .ps 12	>> summary.roff
-	echo .po .35i	>> summary.roff
-	echo .sp .5i	>> summary.roff
-	make LIST="$(LIST)" summary	>> summary.roff
-	echo .bp	>> summary.roff
-	echo .sp .5i	>> summary.roff
-	make LIST="$(LIST)" percent	>> summary.roff
-
-list:
-	@echo $(LIST)
-
-print: ctx mem disk bwfile bwmem
-
-8:
-	$(MK) LIST="$(LIST)" PRINT="groff -p | mpage -P -8 -a | lpr -h" print
-
-8.ps 8ps 8up:
-	$(MK) LIST="$(LIST)" PRINT="$(PS8UP)" print
-
-4.ps 4ps 4up:
-	$(MK) LIST="$(LIST)" PRINT="$(PS4UP)" print
-
-ps:
-	$(MK) LIST="$(LIST)" PRINT="$(PS)" print
-
-smallps:
-	$(MK) LIST="$(LIST)" SIZE= PRINT="groff -p | $(SCRIPTS)save PS/smallPS" print
-
-x: 
-	$(MK) LIST="$(LIST)" PRINT="$(SCRIPTS)xroff -p" print
-
-ctx.x: 
-	$(MK) LIST="$(LIST)" PRINT="$(SCRIPTS)xroff -p" ctx
-
-ctx.ps4:
-	$(MK) LIST="$(LIST)" PRINT="$(PS4UP)" ctx
-
-mem.x: 
-	$(MK) LIST="$(LIST)" PRINT="$(SCRIPTS)xroff -p" mem
-
-disk.x: 
-	$(MK) LIST="$(LIST)" PRINT="$(SCRIPTS)xroff -p" disk
-
-bwfile.ps: 
-	$(MK) LIST="$(LIST)" PRINT="$(PS)" bwfile
-
-bwfile.x: 
-	$(MK) LIST="$(LIST)" PRINT="$(SCRIPTS)xroff -p" bwfile
-
-bwmem.ps: 
-	$(MK) LIST="$(LIST)" PRINT="$(PS)" bwmem
-
-bwmem.x: 
-	$(MK) LIST="$(LIST)" PRINT="$(SCRIPTS)xroff -p" bwmem
-
-smallx:
-	$(MK) LIST="$(LIST)" PRINT="$(SCRIPTS)xroff -p" SIZE= print
-
-slides:
-	$(MK) LIST="$(LIST)" SIZE=-slide bargraphs.slides ctx.slides mem.slides
-
-paper:
-	$(MK) LIST="$(LIST)" tbl.paper ctx.paper mem.paper
-
-# XXX - this has to be made incremental, doing everything over from
-# scratch makes you want a Ghz machine.
-html: dirs
-	-make clean
-	#$(SCRIPTS)bghtml $(BG)
-	$(SCRIPTS)html-list $(LIST)
-	$(MK) LIST="$(LIST)" summary > HTML/summary.out 2> HTML/summary.errs
-	#make LIST="$(LIST)" percent > HTML/percent.out 2> HTML/percent.errs
-	$(MK) LIST="$(LIST)" SIZE=  PRINT="$(PS)" \
-	    GMEM="$(GMEM) -cut -gthk1" GCTX="$(GCTX) -cut -gthk1" print
-	$(MK) LIST="$(LIST)" SIZE= NOOP=-noop PRINT="$(PS)" \
-	    GMEM="$(GMEM) -cut -gthk1" GCTX="$(GCTX) -cut -gthk1" print
-	gs -sOutputFile=HTML/ctx%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS < /dev/null
-	gs -sOutputFile=HTML/mem%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.1 < /dev/null
-	gs -sOutputFile=HTML/disk%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.2 < /dev/null
-	gs -sOutputFile=HTML/bwfile%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.3 < /dev/null
-	gs -sOutputFile=HTML/bwmem%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.4 < /dev/null
-	gs -sOutputFile=HTML/ctx-unscaled%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.5 < /dev/null
-	gs -sOutputFile=HTML/mem-unscaled%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.6 < /dev/null
-	gs -sOutputFile=HTML/bwfile-unscaled%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.7 < /dev/null
-	gs -sOutputFile=HTML/bwmem-unscaled%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.8 < /dev/null
-	$(SCRIPTS)/gifs
-	rm HTML/*.pbm HTML/___tmp*
-
-htmltest: dirs
-	-make clean
-	#$(SCRIPTS)bghtml $(BG)
-	$(SCRIPTS)html-list $(LIST)
-	$(MK) LIST="$(LIST)" summary > HTML/summary.out 2> HTML/summary.errs
-	#make LIST="$(LIST)" percent > HTML/percent.out 2> HTML/percent.errs
-	$(MK) LIST="$(LIST)" SIZE=  PRINT="$(PS)" \
-	    GMEM="$(GMEM) -cut -gthk1" GCTX="$(GCTX) -cut -gthk1" print
-
-bghtml:
-	$(SCRIPTS)bghtml $(BG)
-
-html-list:
-	$(SCRIPTS)html-list $(LIST)
-
-ctx: dirs
-	$(SCRIPTS)getctx $(LIST) > tmp/FILES
-	@if [ -s tmp/FILES ]; \
-	then	$(SCRIPTS)getmax $(NOOP) -graph `cat tmp/FILES`; \
-		for i in `cat tmp/FILES`; \
-		do	$(SCRIPTS)graph $(SIZE) $(GCTX) $$i; \
-			echo .bp; \
-		done | sed '$$d' | $(PRINT); \
-	else	echo No context switch data in $(LIST); \
-	fi
-
-disk: dirs
-	if [ X$(NOOP) = X ]; then \
-		$(SCRIPTS)getdisk $(LIST) > tmp/FILES; \
-		if [ -s tmp/FILES ]; \
-		then	for i in `cat tmp/FILES`; \
-			do	$(SCRIPTS)graph $(SIZE) $(GDISK) $$i; \
-				echo .bp; \
-        		done | sed '$$d' | $(PRINT); \
-		else	echo No disk data in $(LIST); \
-		fi; \
-	fi
-
-mem: dirs
-	$(SCRIPTS)getmem $(LIST) > tmp/FILES
-	if [ -s tmp/FILES ]; \
-	then	$(SCRIPTS)getmax $(NOOP) -graph `cat tmp/FILES`; \
-		for i in `cat tmp/FILES`; \
-		do	$(SCRIPTS)graph $(SIZE) $(GMEM) -nomarks $$i; \
-			echo .bp; \
-        	done | sed '$$d' | $(PRINT); \
-	else	echo No memory latency data in $(LIST); \
-	fi
-
-bwfile: dirs
-	$(SCRIPTS)getbw $(LIST) > tmp/FILES
-	if [ -s tmp/FILES ]; \
-	then	$(SCRIPTS)getmax $(NOOP) -graph `cat tmp/FILES`; \
-		for i in `cat tmp/FILES`; \
-		do	$(SCRIPTS)graph $(SIZE) $(GMEM) -logy $$i; \
-			echo .bp; \
-        	done | sed '$$d' | $(PRINT); \
-	else	echo No file bandwidth data in $(LIST); \
-	fi
-
-bwmem: dirs
-	$(SCRIPTS)getbw -all $(LIST) > tmp/FILES
-	if [ -s tmp/FILES ]; \
-	then	$(SCRIPTS)getmax $(NOOP) -graph `cat tmp/FILES`; \
-		for i in `cat tmp/FILES`; \
-		do	$(SCRIPTS)graph -halfgrid -gthk_5 -thk2 -medium \
-			    -nomarks -nolabels -grapheach $(GMEM) \
-			    -logy %P="'`basename $$i`'" $$i; \
-			echo .bp; \
-        	done | sed '$$d' | $(PRINT); \
-	else	echo No memory bandwidth data in $(LIST); \
-	fi
-
-tbl.paper:
-	$(SCRIPTS)getbg -paper $(LIST) 
-
-
-bargraphs.1st: dirs
-	$(SCRIPTS)getbg -nosort $(LIST)
-	#$(SCRIPTS)getmax -v $(PROC)
-	#$(SCRIPTS)getmax -v $(LATENCY)
-	#$(SCRIPTS)getmax -v -half $(BANDWIDTH)
-
-bargraphs: bargraphs.1st
-	for i in $(BG); \
-	do	$(SCRIPTS)bargraph $(SIZE) -nobox -sideways $$i; \
-		echo .bp; \
-        done | sed '$$d' | $(PRINT)
-
-bargraphs.slides: bargraphs.1st
-	for i in $(BG); \
-	do	$(SCRIPTS)bargraph $(SIZE) -nobox -sideways $$i > $${i}.pic; \
-        done 
-
-bargraphs.8up: bargraphs.1st
-	for i in $(BG); \
-	do	$(SCRIPTS)bargraph -sideways $(SIZE) -nobox $$i; \
-		echo .bp; \
-	done | sed '$$d' | $(PS8UP)
-
-latency.8up: bargraphs.1st
-	for i in $(LATENCY); \
-	do	$(SCRIPTS)bargraph -sideways $(SIZE) -nobox $$i; \
-		echo .bp; \
-	done | sed '$$d' | $(PS8UP)
-
-bw.8up: bargraphs.1st
-	for i in $(BANDWIDTH); \
-	do	$(SCRIPTS)bargraph -sideways $(SIZE) -nobox $$i; \
-		echo .bp; \
-	done | sed '$$d' | $(PS8UP)
-
-get:	# nothing to do
-
-clean:
-	/bin/rm -f PS/* GIF/* HTML/* tmp/* summary.roff
-	-bk clean
-
-distclean:
-	/bin/rm -fr PS  GIF   HTML   tmp   summary.roff
-
-dirs:
-	@if [ ! -d tmp ]; then mkdir tmp; fi
-	@if [ ! -d PS ]; then mkdir PS; fi
-	@if [ ! -d HTML ]; then mkdir HTML; fi
Index: lmbench-3.0-a9/src/Makefile
===================================================================
--- lmbench-3.0-a9.orig/src/Makefile
+++ /dev/null
@@ -1,489 +0,0 @@
-# $Id$
-
-# Make targets:
-#
-# lmbench	[default] builds the benchmark suite for the current os/arch
-# results	builds, configures run parameters, and runs the benchmark
-# rerun		reruns the benchmark using the same parameters as last time
-# scaling	reruns the benchmark using same parameters as last time,
-#		except it asks what scaling value to use
-# hardware	reruns the hardware benchmarks using the same parameters
-# os		reruns the OS benchmarks using the same parameters
-# clean		cleans out sources and run configuration
-# clobber	clean and removes the bin directories
-# shar		obsolete, use cd .. && make shar
-# depend	builds make dependencies (needs gcc)
-# debug		builds all the benchmarks with '-g' debugging flag
-# assembler	builds the .s files for each benchmark
-#
-# This is largely self configuring.  Most stuff is pretty portable.  
-#
-# If you don't have gcc, try make CC=cc and see if that works.
-#
-# If you want to do cross-compilation try make OS=armv5tel-linux-gnu
-# or whatever your OS string should be in the target environment.
-# Since many embedded development environments also have a special
-# cross-compiler, you might want to also select a particular compiler,
-# so your build command would look something like:
-#	make OS=armv5tel-linux-gnu CC=gcc-arm
-#
-# Overriding the OS and CC make parameters needs to be done as an
-# argument to make, not as an environment variable.  See above comments.
-#
-
-# I finally know why Larry Wall's Makefile says "Grrrr".
-SHELL=/bin/sh
-
-CC=`../scripts/compiler`
-MAKE=`../scripts/make`
-AR=ar
-ARCREATE=cr
-
-# base of installation location
-BASE=/usr/local
-O= ../bin/unknown
-D= ../doc
-TRUE=/bin/true
-OS=`../scripts/os`
-TARGET=`../scripts/target`
-BINDIR=../bin/$(OS)
-CONFIG=../bin/$(OS)/`../scripts/config`
-UTILS=../scripts/target ../scripts/os ../scripts/gnu-os ../scripts/compiler \
-	../scripts/info ../scripts/info-template ../scripts/version \
-	../scripts/config ../scripts/config-run ../scripts/results \
-	../scripts/lmbench ../scripts/make ../scripts/build
-INSTALL=cp
-RESULTS=Results/$(OS)
-SAMPLES=lmbench/Results/aix/rs6000 lmbench/Results/hpux/snake \
-	lmbench/Results/irix/indigo2 lmbench/Results/linux/pentium \
-	lmbench/Results/osf1/alpha lmbench/Results/solaris/ss20* 
-
-COMPILE=$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
-
-INCS =	bench.h lib_mem.h lib_tcp.h lib_udp.h stats.h timing.h
-
-SRCS =  bw_file_rd.c bw_mem.c bw_mmap_rd.c bw_pipe.c bw_tcp.c bw_udp.c	\
-	bw_unix.c							\
-	cache.c clock.c disk.c enough.c flushdisk.c getopt.c hello.c	\
-	lat_connect.c lat_ctx.c	lat_fcntl.c lat_fifo.c lat_fs.c 	\
-	lat_mem_rd.c lat_mmap.c lat_ops.c lat_pagefault.c lat_pipe.c 	\
-	lat_proc.c lat_rpc.c lat_select.c lat_sig.c lat_syscall.c	\
-	lat_tcp.c lat_udp.c lat_unix.c lat_unix_connect.c lat_sem.c	\
-	lat_usleep.c lat_pmake.c  					\
-	lib_debug.c lib_mem.c lib_stats.c lib_tcp.c lib_timing.c 	\
-	lib_udp.c lib_unix.c lib_sched.c				\
-	line.c lmdd.c lmhttp.c par_mem.c par_ops.c loop_o.c memsize.c 	\
-	mhz.c msleep.c rhttp.c seek.c timing_o.c tlb.c stream.c		\
-	bench.h lib_debug.h lib_tcp.h lib_udp.h lib_unix.h names.h 	\
-	stats.h timing.h version.h
-
-ASMS =  $O/bw_file_rd.s $O/bw_mem.s $O/bw_mmap_rd.s $O/bw_pipe.s 	\
-	$O/bw_tcp.s $O/bw_udp.s $O/bw_unix.s $O/clock.s			\
-	$O/disk.s $O/enough.s $O/flushdisk.s $O/getopt.s $O/hello.s	\
-	$O/lat_connect.s $O/lat_ctx.s lat_fcntl.s $O/lat_fifo.s		\
-	$O/lat_fs.s $O/lat_mem_rd.s $O/lat_mmap.s $O/lat_ops.s		\
-	$O/lat_pagefault.s $O/lat_pipe.s $O/lat_proc.s $O/lat_rpc.s	\
-	$O/lat_select.s $O/lat_sig.s $O/lat_syscall.s $O/lat_tcp.s	\
-	$O/lat_udp.s $O/lat_unix.s $O/lat_unix_connect.s $O/lat_sem.s	\
-	$O/lib_debug.s $O/lib_mem.s	\
-	$O/lib_stats.s $O/lib_tcp.s $O/lib_timing.s $O/lib_udp.s	\
-	$O/lib_unix.s $O/lib_sched.s					\
-	$O/line.s $O/lmdd.s $O/lmhttp.s $O/par_mem.s	\
-	$O/par_ops.s $O/loop_o.s $O/memsize.s $O/mhz.s $O/msleep.s	\
-	$O/rhttp.s $O/timing_o.s $O/tlb.s $O/stream.s			\
-	$O/cache.s $O/lat_dram_page.s $O/lat_pmake.s $O/lat_rand.s	\
-	$O/lat_usleep.s $O/lat_cmd.s
-EXES =	$O/bw_file_rd $O/bw_mem $O/bw_mmap_rd $O/bw_pipe $O/bw_tcp 	\
-	$O/bw_unix $O/hello						\
-	$O/lat_select $O/lat_pipe $O/lat_rpc $O/lat_syscall $O/lat_tcp	\
-	$O/lat_udp $O/lat_mmap $O/mhz $O/lat_proc $O/lat_pagefault	\
-	$O/lat_connect $O/lat_fs $O/lat_sig $O/lat_mem_rd $O/lat_ctx	\
-	$O/lat_sem 							\
-	$O/memsize $O/lat_unix $O/lmdd $O/timing_o $O/enough		\
-	$O/msleep $O/loop_o $O/lat_fifo $O/lmhttp $O/lat_http		\
-	$O/lat_fcntl $O/disk $O/lat_unix_connect $O/flushdisk		\
-	$O/lat_ops $O/line $O/tlb $O/par_mem $O/par_ops 		\
-	$O/stream
-OPT_EXES=$O/cache $O/lat_dram_page $O/lat_pmake $O/lat_rand 		\
-	$O/lat_usleep $O/lat_cmd
-LIBOBJS= $O/lib_tcp.o $O/lib_udp.o $O/lib_unix.o $O/lib_timing.o 	\
-	$O/lib_mem.o $O/lib_stats.o $O/lib_debug.o $O/getopt.o		\
-	$O/lib_sched.o
-
-lmbench: $(UTILS)
-	@env CFLAGS=-O MAKE="$(MAKE)" MAKEFLAGS="$(MAKEFLAGS)" CC="$(CC)" OS="$(OS)" ../scripts/build all
-	-@env CFLAGS=-O MAKE="$(MAKE)" MAKEFLAGS="k$(MAKEFLAGS)" CC="$(CC)" OS="$(OS)" ../scripts/build opt
-
-results: lmbench
-	@env OS="${OS}" ../scripts/config-run
-	@env OS="${OS}" ../scripts/results
-
-rerun: lmbench
-	@if [ ! -f $(CONFIG) ]; then env OS="${OS}" ../scripts/config-run; fi
-	@env OS="${OS}" ../scripts/results
-
-scaling: lmbench
-	@if [ ! -f $(CONFIG) ]; then env OS="${OS}" ../scripts/config-run; \
-	 else ../scripts/config-scaling $(CONFIG); fi
-	@env OS="${OS}" ../scripts/results
-
-hardware: lmbench
-	@if [ ! -f $(CONFIG) ]; then env OS="${OS}" ../scripts/config-run; fi
-	@env OS="${OS}" BENCHMARK_HARDWARE=YES BENCHMARK_OS=NO  ../scripts/results
-
-os: lmbench
-	@if [ ! -f $(CONFIG) ]; then env OS="${OS}" ../scripts/config-run; fi
-	@env OS="${OS}" BENCHMARK_HARDWARE=NO  BENCHMARK_OS=YES ../scripts/results
-
-install: lmbench
-	@env CFLAGS=-O MAKE="$(MAKE)"  MAKEFLAGS="$(MAKEFLAGS)" CC="${CC}" OS="${OS}" ../scripts/build install-target
-
-install-target:
-	if [ ! -d $(BASE) ]; then mkdir $(BASE); fi
-	if [ ! -d $(BASE)/bin ]; then mkdir $(BASE)/bin; fi
-	if [ ! -d $(BASE)/include ]; then mkdir $(BASE)/include; fi
-	if [ ! -d $(BASE)/lib ]; then mkdir $(BASE)/lib; fi
-	cp $(EXES) $(BASE)/bin
-	cp $(INCS) $(BASE)/include
-	cp $O/lmbench.a $(BASE)/lib/libmbench.a
-	cd ../doc; env MAKEFLAGS="$(MAKEFLAGS)" make CC="${CC}" OS="${OS}" BASE="$(BASE)" install
-
-
-# No special handling for all these
-all: $(EXES) $O/lmbench
-opt: $(OPT_EXES)
-asm: $(ASMS)
-$(ASMS):
-	$(CC) -S $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ `basename $@ .s`.c
-
-Wall:
-	@env CFLAGS="-g -O -Wall" MAKE="$(MAKE)" MAKEFLAGS="$(MAKEFLAGS)" CC="${CC}" OS="${OS}" ../scripts/build all opt
-
-debug:
-	@env CFLAGS="-g -O -DDEBUG" MAKE="$(MAKE)" MAKEFLAGS="$(MAKEFLAGS)" CC="${CC}" OS="${OS}" ../scripts/build all opt
-
-assembler:
-	@env CFLAGS=-O MAKE="$(MAKE)" MAKEFLAGS="$(MAKEFLAGS)" CC="${CC}" OS="${OS}" ../scripts/build asm
-
-
-tag:
-	ROOT=`cat ../CVS/Root`; \
-	MODULE=`cat ../CVS/Repository`; \
-	VERSION=`../scripts/version`; \
-	TAG=`echo lmbench_$${VERSION} | sed -e 's/-/_/g' -e 's/\\./_/g'`; \
-	cd .. \
-	&& cvs -d$${ROOT} tag -c "$${TAG}"
-
-dist: 
-	SRCDIR=`pwd`; \
-	ROOT=`cat ../CVS/Root`; \
-	MODULE=`cat ../CVS/Repository`; \
-	VERSION=`../scripts/version`; \
-	cd /tmp \
-	&& cvs -d$${ROOT} export -Dtomorrow \
-		 -d $${MODULE}-$${VERSION} $${MODULE} \
-	&& chmod +x $${MODULE}-$${VERSION}/scripts/[a-z]* \
-	&& mv $${MODULE}-$${VERSION} lmbench-$${VERSION} \
-	&& tar czf $${SRCDIR}/../../lmbench-$${VERSION}.tgz \
-		lmbench-$${VERSION} \
-	&& rm -rf lmbench-$${VERSION};
-
-clean:
-	/bin/rm -f ../bin/*/CONFIG ../bin/*/*.[oas]
-	/bin/rm -f *.[oas]
-
-clobber:
-	/bin/rm -rf ../bin* SHAR
-
-shar:
-	cd ../.. && shar lmbench/Results/Makefile $(SAMPLES) lmbench/scripts/* lmbench/src/Makefile lmbench/src/*.[ch] > lmbench/SHAR
-
-depend: ../scripts/depend
-	../scripts/depend
-
-testmake: $(SRCS) $(UTILS) # used by scripts/make to test gmake
-	@true
-
-.PHONY: lmbench results rerun hardware os install all Wall debug \
-	install install-target dist get edit get-e clean clobber \
-	share depend testmake
-
-$O/lmbench : ../scripts/lmbench version.h
-	rm -f $O/lmbench
-	VERSION=`../scripts/version`; \
-	sed -e "s/<version>/$${VERSION}/g" < ../scripts/lmbench > $O/lmbench
-	chmod +x $O/lmbench
-
-$O/lmbench.a: $(LIBOBJS)
-	/bin/rm -f $O/lmbench.a
-	$(AR) $(ARCREATE) $O/lmbench.a $(LIBOBJS)
-	-ranlib $O/lmbench.a
-
-$O/lib_timing.o : lib_timing.c $(INCS)
-	$(COMPILE) -c lib_timing.c -o $O/lib_timing.o
-$O/lib_mem.o : lib_mem.c $(INCS)
-	$(COMPILE) -c lib_mem.c -o $O/lib_mem.o
-$O/lib_tcp.o : lib_tcp.c $(INCS)
-	$(COMPILE) -c lib_tcp.c -o $O/lib_tcp.o
-$O/lib_udp.o : lib_udp.c $(INCS)
-	$(COMPILE) -c lib_udp.c -o $O/lib_udp.o
-$O/lib_unix.o : lib_unix.c $(INCS)
-	$(COMPILE) -c lib_unix.c -o $O/lib_unix.o
-$O/lib_debug.o : lib_debug.c $(INCS)
-	$(COMPILE) -c lib_debug.c -o $O/lib_debug.o
-$O/lib_stats.o : lib_stats.c $(INCS)
-	$(COMPILE) -c lib_stats.c -o $O/lib_stats.o
-$O/lib_sched.o : lib_sched.c $(INCS)
-	$(COMPILE) -c lib_sched.c -o $O/lib_sched.o
-$O/getopt.o : getopt.c $(INCS)
-	$(COMPILE) -c getopt.c -o $O/getopt.o
-
-$(UTILS) :
-	-cd ../scripts; make get
-
-# Do not remove the next line, $(MAKE) depend needs it
-# MAKEDEPEND follows
-$O/rhttp.s:rhttp.c timing.h stats.h bench.h 
-$O/rhttp:  rhttp.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/rhttp rhttp.c $O/lmbench.a $(LDLIBS)
-
-$O/http.s:http.c timing.h stats.h bench.h 
-$O/http:  http.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/http http.c $O/lmbench.a $(LDLIBS)
-
-$O/flushdisk.s:flushdisk.c 
-$O/flushdisk:  flushdisk.c 
-	$(COMPILE) -DMAIN -o $O/flushdisk flushdisk.c
-
-$O/mhz.s: mhz.c timing.h stats.h bench.h
-$O/mhz: mhz.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/mhz mhz.c $O/lmbench.a $(LDLIBS) -lm
-
-$O/lat_ctx.s: lat_ctx.c timing.h stats.h bench.h
-$O/lat_ctx: lat_ctx.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_ctx lat_ctx.c $O/lmbench.a $(LDLIBS)
-
-$O/lmhttp.s:lmhttp.c timing.h stats.h bench.h
-$O/lmhttp:  lmhttp.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lmhttp lmhttp.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_http.s:lat_http.c timing.h stats.h bench.h
-$O/lat_http:  lat_http.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_http lat_http.c $O/lmbench.a $(LDLIBS)
-
-$O/bw_file_rd.s:bw_file_rd.c timing.h stats.h bench.h
-$O/bw_file_rd:  bw_file_rd.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/bw_file_rd bw_file_rd.c $O/lmbench.a $(LDLIBS)
-
-$O/bw_mem.s:bw_mem.c timing.h stats.h bench.h
-$O/bw_mem:  bw_mem.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/bw_mem bw_mem.c $O/lmbench.a $(LDLIBS)
-
-$O/bw_mmap_rd.s:bw_mmap_rd.c timing.h stats.h bench.h
-$O/bw_mmap_rd:  bw_mmap_rd.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/bw_mmap_rd bw_mmap_rd.c $O/lmbench.a $(LDLIBS)
-
-$O/bw_pipe.s:bw_pipe.c timing.h stats.h bench.h
-$O/bw_pipe:  bw_pipe.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/bw_pipe bw_pipe.c $O/lmbench.a $(LDLIBS)
-
-$O/bw_tcp.s:bw_tcp.c bench.h timing.h stats.h lib_tcp.h
-$O/bw_tcp:  bw_tcp.c bench.h timing.h stats.h lib_tcp.h $O/lmbench.a
-	$(COMPILE) -o $O/bw_tcp bw_tcp.c $O/lmbench.a $(LDLIBS)
-
-$O/bw_udp.s:bw_udp.c bench.h timing.h stats.h lib_udp.h
-$O/bw_udp:  bw_udp.c bench.h timing.h stats.h lib_udp.h $O/lmbench.a
-	$(COMPILE) -o $O/bw_udp bw_udp.c $O/lmbench.a $(LDLIBS)
-
-$O/bw_unix.s:bw_unix.c timing.h stats.h bench.h
-$O/bw_unix:  bw_unix.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/bw_unix bw_unix.c $O/lmbench.a $(LDLIBS)
-
-$O/disk.s:disk.c flushdisk.c bench.h timing.h stats.h lib_tcp.h
-$O/disk:  disk.c flushdisk.c bench.h timing.h stats.h lib_tcp.h $O/lmbench.a
-	$(COMPILE) -o $O/disk disk.c $O/lmbench.a $(LDLIBS)
-
-$O/clock.s:clock.c timing.h stats.h bench.h
-$O/clock:  clock.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/clock clock.c $O/lmbench.a $(LDLIBS)
-
-$O/hello.s:hello.c
-$O/hello:  hello.c $O/lmbench.a
-	$(COMPILE) -o $O/hello hello.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_alarm.s:lat_alarm.c timing.h stats.h bench.h
-$O/lat_alarm:  lat_alarm.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_alarm lat_alarm.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_connect.s:lat_connect.c lib_tcp.c bench.h lib_tcp.h timing.h stats.h
-$O/lat_connect:  lat_connect.c lib_tcp.c bench.h lib_tcp.h timing.h stats.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_connect lat_connect.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_unix_connect.s:lat_unix_connect.c lib_tcp.c bench.h lib_tcp.h timing.h stats.h
-$O/lat_unix_connect:  lat_unix_connect.c lib_tcp.c bench.h lib_tcp.h timing.h stats.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_unix_connect lat_unix_connect.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_fs.s:lat_fs.c timing.h stats.h bench.h
-$O/lat_fs:  lat_fs.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_fs lat_fs.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_fcntl.s:lat_fcntl.c timing.h stats.h bench.h
-$O/lat_fcntl:  lat_fcntl.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_fcntl lat_fcntl.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_mem_rd.s:lat_mem_rd.c timing.h stats.h bench.h
-$O/lat_mem_rd:  lat_mem_rd.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_mem_rd lat_mem_rd.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_mem_rd2.s:lat_mem_rd2.c timing.h stats.h bench.h
-$O/lat_mem_rd2:  lat_mem_rd2.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_mem_rd2 lat_mem_rd2.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_mem_wr.s:lat_mem_wr.c timing.h stats.h bench.h
-$O/lat_mem_wr:  lat_mem_wr.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_mem_wr lat_mem_wr.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_mem_wr2.s:lat_mem_wr2.c timing.h stats.h bench.h
-$O/lat_mem_wr2:  lat_mem_wr2.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_mem_wr2 lat_mem_wr2.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_mmap.s:lat_mmap.c timing.h stats.h bench.h
-$O/lat_mmap:  lat_mmap.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_mmap lat_mmap.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_mmaprd.s:lat_mmaprd.c timing.h stats.h bench.h
-$O/lat_mmaprd:  lat_mmaprd.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_mmaprd lat_mmaprd.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_ops.s:lat_ops.c timing.h stats.h bench.h
-$O/lat_ops:  lat_ops.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_ops lat_ops.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_pagefault.s:lat_pagefault.c timing.h stats.h bench.h
-$O/lat_pagefault:  lat_pagefault.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_pagefault lat_pagefault.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_pipe.s:lat_pipe.c timing.h stats.h bench.h
-$O/lat_pipe:  lat_pipe.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_pipe lat_pipe.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_fifo.s:lat_fifo.c timing.h stats.h bench.h
-$O/lat_fifo:  lat_fifo.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_fifo lat_fifo.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_proc.s:lat_proc.c timing.h stats.h bench.h
-$O/lat_proc:  lat_proc.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_proc lat_proc.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_rpc.s:lat_rpc.c timing.h stats.h bench.h
-$O/lat_rpc:  lat_rpc.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_rpc lat_rpc.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_sig.s:lat_sig.c timing.h stats.h bench.h
-$O/lat_sig:  lat_sig.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_sig lat_sig.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_syscall.s:lat_syscall.c timing.h stats.h bench.h
-$O/lat_syscall:  lat_syscall.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_syscall lat_syscall.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_select.s:  lat_select.c timing.h stats.h bench.h
-$O/lat_select:  lat_select.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_select lat_select.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_tcp.s:lat_tcp.c timing.h stats.h bench.h lib_tcp.h
-$O/lat_tcp:  lat_tcp.c timing.h stats.h bench.h lib_tcp.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_tcp lat_tcp.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_udp.s:lat_udp.c timing.h stats.h bench.h lib_udp.h
-$O/lat_udp:  lat_udp.c timing.h stats.h bench.h lib_udp.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_udp lat_udp.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_unix.s:lat_unix.c timing.h stats.h bench.h
-$O/lat_unix:  lat_unix.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_unix lat_unix.c $O/lmbench.a $(LDLIBS)
-
-$O/lib_tcp.s:lib_tcp.c bench.h lib_tcp.h
-$O/lib_tcp:  lib_tcp.c bench.h lib_tcp.h $O/lmbench.a
-	$(COMPILE) -o $O/lib_tcp lib_tcp.c $O/lmbench.a $(LDLIBS)
-
-$O/lib_udp.s:lib_udp.c bench.h lib_udp.h
-$O/lib_udp:  lib_udp.c bench.h lib_udp.h $O/lmbench.a
-	$(COMPILE) -o $O/lib_udp lib_udp.c $O/lmbench.a $(LDLIBS)
-
-$O/lmdd.s:lmdd.c timing.h stats.h bench.h
-$O/lmdd:  lmdd.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lmdd lmdd.c $O/lmbench.a $(LDLIBS)
-
-$O/enough.s:enough.c timing.h stats.h bench.h
-$O/enough:  enough.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/enough enough.c $O/lmbench.a $(LDLIBS)
-
-$O/loop_o.s:loop_o.c timing.h stats.h bench.h
-$O/loop_o:  loop_o.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/loop_o loop_o.c $O/lmbench.a $(LDLIBS)
-
-$O/timing_o.s:timing_o.c timing.h stats.h bench.h
-$O/timing_o:  timing_o.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/timing_o timing_o.c $O/lmbench.a $(LDLIBS)
-
-$O/memsize.s:memsize.c timing.h stats.h bench.h
-$O/memsize:  memsize.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/memsize memsize.c $O/lmbench.a $(LDLIBS)
-
-$O/msleep.s:msleep.c timing.h stats.h bench.h
-$O/msleep:  msleep.c timing.h stats.h bench.h 
-	$(COMPILE) -o $O/msleep msleep.c
-
-$O/line.s:  line.c timing.h stats.h bench.h
-$O/line:  line.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/line line.c $O/lmbench.a $(LDLIBS)
-
-$O/tlb.s:tlb.c timing.h stats.h bench.h
-$O/tlb:  tlb.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/tlb tlb.c $O/lmbench.a $(LDLIBS)
-
-$O/cache.s:cache.c timing.h stats.h bench.h
-$O/cache:  cache.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/cache cache.c $O/lmbench.a $(LDLIBS)
-
-$O/par_mem.s:par_mem.c timing.h stats.h bench.h
-$O/par_mem:  par_mem.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/par_mem par_mem.c $O/lmbench.a $(LDLIBS)
-
-$O/par_ops.s:par_ops.c timing.h stats.h bench.h
-$O/par_ops:  par_ops.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/par_ops par_ops.c $O/lmbench.a $(LDLIBS)
-
-$O/stream.s:stream.c timing.h stats.h bench.h
-$O/stream:  stream.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/stream stream.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_sem.s:lat_sem.c timing.h stats.h bench.h
-$O/lat_sem:  lat_sem.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_sem lat_sem.c $O/lmbench.a $(LDLIBS)
-
-$O/par_list.s:par_list.c timing.h stats.h bench.h
-$O/par_list:  par_list.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/par_list par_list.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_dram_page.s:lat_dram_page.c timing.h stats.h bench.h
-$O/lat_dram_page:  lat_dram_page.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_dram_page lat_dram_page.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_usleep.s:lat_usleep.c timing.h stats.h bench.h
-$O/lat_usleep:  lat_usleep.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_usleep lat_usleep.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_pmake.s:lat_pmake.c timing.h stats.h bench.h
-$O/lat_pmake:  lat_pmake.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_pmake lat_pmake.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_rand.s:lat_rand.c timing.h stats.h bench.h
-$O/lat_rand:  lat_rand.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_rand lat_rand.c $O/lmbench.a $(LDLIBS)
-
-$O/lat_cmd.s:lat_cmd.c timing.h stats.h bench.h
-$O/lat_cmd:  lat_cmd.c timing.h stats.h bench.h $O/lmbench.a
-	$(COMPILE) -o $O/lat_cmd lat_cmd.c $O/lmbench.a $(LDLIBS)
-