home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-02-01 | 7.9 KB | 221 lines |
- ##############################################################################
- # The BYTE UNIX Benchmarks - Release 3
- # Module: Makefile SID: 3.9 5/15/91 19:30:15
- #
- ##############################################################################
- # Bug reports, patches, comments, suggestions should be sent to:
- #
- # Ben Smith or Tom Yager at BYTE Magazine
- # bensmith@bytepb.byte.com tyager@bytepb.byte.com
- #
- ##############################################################################
- # Modification Log: 7/28/89 cleaned out workload files
- # 4/17/90 added routines for installing from shar mess
- # 7/23/90 added compile for dhrystone version 2.1
- # (this is not part of Run file. still use old)
- # removed HZ from everything but dhry.
- # HZ is read from the environment, if not
- # there, you must define it in this file
- # 10/30/90 moved new dhrystone into standard set
- # new pgms (dhry included) run for a specified
- # time rather than specified number of loops
- # 4/5/91 cleaned out files not needed for
- # release 3 -- added release 3 files -ben
- ##############################################################################
- ID="@(#)Makefile:3.9 -- 5/15/91 19:30:15";
- SHELL = /bin/sh
- #HZ = ???? #(read from environment)
- CFLAGS = -DTIME
- OPTON = -O #optimization on (give it your best shot)
- # -- check your compiler man
- OPTOFF = -Od #optimization off -- check your compiler man
- # local directories
- PROGDIR = ./pgms
- SRCDIR = ./src
- DOCDIR = ./doc
- TESTDIR = ./testdir
- RESULTDIR = ./results
- TMPDIR = ./tmp
- # other directories
- INCLDIR = /usr/include
- LIBDIR = /lib
- SCRIPTS = byte.logo cleanup.sh \
- fs.awk multi.sh tst.sh index.sh index.base \
- index.awk loops.awk loopm.awk\
- report.sh report.awk
- SOURCES = arith.c big.c context1.c \
- dummy.c execl.c \
- fstime.c getopt.c hanoi.c \
- pipe.c spawn.c limit.c \
- syscall.c looper.c timeit.c \
- dhry_1.c dhry_2.c dhry.h
- DOCS = bench.doc bench3.doc
- TESTS = sort.src cctest.c dc.dat
- RESULTS = reports.shar
- BINS = $(PROGDIR)/arithoh $(PROGDIR)/register $(PROGDIR)/short \
- $(PROGDIR)/int $(PROGDIR)/long $(PROGDIR)/float $(PROGDIR)/double \
- $(PROGDIR)/hanoi \
- $(PROGDIR)/fstime $(PROGDIR)/syscall $(PROGDIR)/context1 \
- $(PROGDIR)/pipe $(PROGDIR)/spawn $(PROGDIR)/execl \
- $(PROGDIR)/dhry2 $(PROGDIR)/dhry2reg $(PROGDIR)/looper
- REQD = $(BINS) $(PROGDIR)/byte.logo $(PROGDIR)/cleanup.sh \
- $(PROGDIR)/fs.awk $(PROGDIR)/multi.sh \
- $(PROGDIR)/tst.sh $(PROGDIR)/index.sh $(PROGDIR)/index.base \
- $(PROGDIR)/index.awk $(PROGDIR)/loops.awk $(PROGDIR)/loopm.awk \
- $(PROGDIR)/report.sh $(PROGDIR)/report.awk \
- $(TESTDIR)/sort.src $(TESTDIR)/cctest.c $(TESTDIR)/dc.dat
-
- # ######################### the big ALL ############################
- all: distr programs
- @chmod 744 * $(SRCDIR)/* $(PROGDIR)/* $(TESTDIR)/* $(DOCDIR)/*
-
- # ####################### a check for Run ######################
- check: $(REQD)
- make all
- # ##############################################################
- # distribute the files out to subdirectories if they are in this one
- distr:
- @echo "Checking distribution of files"
- # scripts
- @if test ! -d $(PROGDIR) \
- ; then \
- mkdir $(PROGDIR) \
- ; mv $(SCRIPTS) $(PROGDIR) \
- ; else \
- echo "$(PROGDIR) exists" \
- ; fi
- # C sources
- @if test ! -d $(SRCDIR) \
- ; then \
- mkdir $(SRCDIR) \
- ; mv $(SOURCES) $(SRCDIR) \
- ; else \
- echo "$(SRCDIR) exists" \
- ; fi
- # test data
- @if test ! -d $(TESTDIR) \
- ; then \
- mkdir $(TESTDIR) \
- ; mv $(TESTS) $(TESTDIR) \
- ; else \
- echo "$(TESTDIR) exists" \
- ; fi
- # documents directory
- @if test ! -d $(DOCDIR) \
- ; then \
- mkdir $(DOCDIR) \
- ; mv $(DOCS) $(DOCDIR) \
- ; else \
- echo "$(DOCDIR) exists" \
- ; fi
- # temporary work directory
- @if test ! -d $(TMPDIR) \
- ; then \
- mkdir $(TMPDIR) \
- ; else \
- echo "$(TMPDIR) exists" \
- ; fi
- # directory for results
- @if test ! -d $(RESULTDIR) \
- ; then \
- mkdir $(RESULTDIR) \
- ; mv $(RESULTS) $(RESULTDIR) \
- ; else \
- echo "$(RESULTDIR) exists" \
- ; fi
-
- programs: $(BINS)
-
- # Individual programs
- $(PROGDIR)/arithoh: $(SRCDIR)/arith.c
- cc -o $(PROGDIR)/arithoh ${CFLAGS} ${OPTON} -Darithoh $(SRCDIR)/arith.c
- $(PROGDIR)/register: $(SRCDIR)/arith.c
- cc -o $(PROGDIR)/register ${CFLAGS} ${OPTON} -Ddatum=register $(SRCDIR)/arith.c
- $(PROGDIR)/short: $(SRCDIR)/arith.c
- cc -o $(PROGDIR)/short ${CFLAGS} ${OPTON} -Ddatum=short $(SRCDIR)/arith.c
- $(PROGDIR)/int: $(SRCDIR)/arith.c
- cc -o $(PROGDIR)/int ${CFLAGS} ${OPTON} -Ddatum=int $(SRCDIR)/arith.c
- $(PROGDIR)/long: $(SRCDIR)/arith.c
- cc -o $(PROGDIR)/long ${CFLAGS} ${OPTON} -Ddatum=long $(SRCDIR)/arith.c
- $(PROGDIR)/float: $(SRCDIR)/arith.c
- cc -o $(PROGDIR)/float ${CFLAGS} ${OPTON} -Ddatum=float $(SRCDIR)/arith.c
- $(PROGDIR)/double: $(SRCDIR)/arith.c
- cc -o $(PROGDIR)/double ${CFLAGS} ${OPTON} -Ddatum=double $(SRCDIR)/arith.c
- $(PROGDIR)/hanoi: $(SRCDIR)/hanoi.c
- cc -o $(PROGDIR)/hanoi ${CFLAGS} ${OPTON} $(SRCDIR)/hanoi.c
- $(PROGDIR)/fstime: $(SRCDIR)/fstime.c
- cc -o $(PROGDIR)/fstime ${CFLAGS} ${OPTON} -Dawk=1 $(SRCDIR)/fstime.c
- $(PROGDIR)/syscall: $(SRCDIR)/syscall.c
- cc -o $(PROGDIR)/syscall ${CFLAGS} ${OPTON} $(SRCDIR)/syscall.c
- $(PROGDIR)/context1: $(SRCDIR)/context1.c
- cc -o $(PROGDIR)/context1 ${CFLAGS} ${OPTON} $(SRCDIR)/context1.c
- $(PROGDIR)/pipe: $(SRCDIR)/pipe.c
- cc -o $(PROGDIR)/pipe ${CFLAGS} ${OPTON} $(SRCDIR)/pipe.c
- $(PROGDIR)/spawn: $(SRCDIR)/spawn.c
- cc -o $(PROGDIR)/spawn ${CFLAGS} ${OPTON} $(SRCDIR)/spawn.c
- $(PROGDIR)/execl: $(SRCDIR)/execl.c $(SRCDIR)/big.c
- cc -o $(PROGDIR)/execl ${CFLAGS} ${OPTON} $(SRCDIR)/execl.c
- $(PROGDIR)/dhry2: $(SRCDIR)/dhry_1.c $(SRCDIR)/dhry_2.c $(SRCDIR)/dhry.h
- cd $(SRCDIR); cc -c ${CFLAGS} -DHZ=${HZ} ${OPTON} dhry_1.c
- cd $(SRCDIR); cc -c ${CFLAGS} -DHZ=${HZ} ${OPTON} dhry_2.c
- cc -o $(PROGDIR)/dhry2 ${CFLAGS} ${OPTON} $(SRCDIR)/dhry_1.o $(SRCDIR)/dhry_2.o
- cd $(SRCDIR); rm -f dhry_1.o dhry_2.o
- $(PROGDIR)/dhry2reg: $(SRCDIR)/dhry_1.c $(SRCDIR)/dhry_2.c $(SRCDIR)/dhry.h
- cd $(SRCDIR); cc -c ${CFLAGS} -DREG=register -DHZ=${HZ} ${OPTON} dhry_1.c
- cd $(SRCDIR); cc -c ${CFLAGS} -DREG=register -DHZ=${HZ} ${OPTON} dhry_2.c
- cc -o $(PROGDIR)/dhry2reg ${CFLAGS} ${OPTON} $(SRCDIR)/dhry_1.o $(SRCDIR)/dhry_2.o
- cd $(SRCDIR); rm -f dhry_1.o dhry_2.o
- $(PROGDIR)/looper: $(SRCDIR)/looper.c
- cc -o $(PROGDIR)/looper ${CFLAGS} ${OPTON} $(SRCDIR)/looper.c
-
- # Run the benchmarks and create the reports
- run:
- sh ./Run
-
- report:
- sh pgms/report.sh results/log > results/report
- sh pgms/index.sh pgms/index.base results/log >> results/report
- cat results/report
-
- # SCCS stuff and disk reproduction
- clean:
- rm -f $(BINS)
-
- delta:
- delta -y"development step" sccs/s.Run sccs/s.README
- cd src; delta -y"development step" sccs
- cd pgms; delta -y"development step" sccs
- cd testdir; delta -y"development step" sccs
- cd doc; delta -y"development step" sccs
- get:
- get -e sccs/s.Run sccs/s.README
- cd src; get -e sccs
- cd pgms; get -e sccs
- cd testdir; get -e sccs
- cd doc; get -e sccs
- chmod 744 $(SRCDIR)/*
- chmod 755 $(PROGDIR)/* *
- rel:
- cd bench; rm -f Makefile Run README; get ../sccs
- cd bench/src; rm -f *; get ../../src/sccs
- cd bench/pgms; rm -f *; get ../../pgms/sccs
- cd bench/testdir; rm -f *; get ../../testdir/sccs
- cd bench/doc; rm -f *; get ../../doc/sccs
- cd bench; chmod 744 src/* testdir/*
- cd bench; chmod 755 * pgms/*
-
- tar48:
- format /dev/rdsk/f05d9t
- tar cfb /dev/rdsk/f05d9t 20 bench
- tar tf /dev/rdsk/f05d9t
-
- tar96:
- format /dev/rdsk/f05ht
- tar cfb /dev/rdsk/f05ht 20 bench
- tar tf /dev/rdsk/f05ht
-
- tar135:
- format /dev/rdsk/f13dt
- tar cfb /dev/rdsk/f13dt 20 bench
- tar tf /dev/rdsk/f13dt
-