home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / sys / tests / benchmarks / bench-4.1 / Makefile < prev    next >
Encoding:
Makefile  |  1985-05-06  |  1.3 KB  |  60 lines

  1. ALL=    syscall csw signocsw \
  2.     seqpage randpage gausspage \
  3.     seqread randbread randread randrewrite \
  4.     randwrite seqrewrite seqwrite \
  5.     pipeback pipediscard pipeself
  6. CFLAGS=-O
  7.  
  8. all:    ${ALL}
  9.  
  10. syscall: syscall.c
  11.     ${CC} -o syscall ${CFLAGS} syscall.c
  12.  
  13. csw: csw.c
  14.     ${CC} -o csw ${CFLAGS} csw.c
  15.  
  16. gausspage: gausspage.c getpagesize.o
  17.     ${CC} -o gausspage ${CFLAGS} gausspage.c getpagesize.o -lnm
  18.  
  19. pipeback: pipeback.c
  20.     ${CC} -o pipeback ${CFLAGS} pipeback.c
  21.  
  22. pipediscard: pipediscard.c
  23.     ${CC} -o pipediscard ${CFLAGS} pipediscard.c
  24.  
  25. pipeself: pipeself.c
  26.     ${CC} -o pipeself ${CFLAGS} pipeself.c
  27.  
  28. randbread: randbread.c random.o
  29.     ${CC} -o randbread ${CFLAGS} randbread.c random.o
  30.  
  31. randpage: randpage.c random.o
  32.     ${CC} -o randpage ${CFLAGS} randpage.c random.o
  33.  
  34. randread: randread.c random.o
  35.     ${CC} -o randread ${CFLAGS} randread.c random.o
  36.  
  37. randrewrite: randrewrite.c random.o
  38.     ${CC} -o randrewrite ${CFLAGS} randrewrite.c random.o
  39.  
  40. randwrite: randwrite.c random.o
  41.     ${CC} -o randwrite ${CFLAGS} randwrite.c random.o
  42.  
  43. seqpage: seqpage.c getpagesize.o
  44.     ${CC} -o seqpage ${CFLAGS} seqpage.c getpagesize.o
  45.  
  46. seqread: seqread.c
  47.     ${CC} -o seqread ${CFLAGS} seqread.c
  48.  
  49. seqrewrite: seqrewrite.c
  50.     ${CC} -o seqrewrite ${CFLAGS} seqrewrite.c
  51.  
  52. seqwrite: seqwrite.c
  53.     ${CC} -o seqwrite ${CFLAGS} seqwrite.c
  54.  
  55. signocsw: signocsw.c
  56.     ${CC} -o signocsw ${CFLAGS} signocsw.c
  57.  
  58. clean:
  59.     rm -f ${ALL} *.o core errs
  60.