home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / cmd / plot / makefile < prev    next >
Encoding:
Makefile  |  1979-01-10  |  611 b   |  35 lines

  1. CFLAGS = -n -O -s
  2.  
  3. all:    tek t300 t300s t450 vplot
  4.     :
  5.  
  6. cp:    all
  7.     cp tek t300 t300s t450 vplot /bin
  8.     rm tek t300 t300s t450 vplot driver.o
  9.  
  10. cmp:    all
  11.     cmp tek /bin/tek
  12.     rm tek
  13.     cmp t300 /bin/t300
  14.     rm t300
  15.     cmp t300s /bin/t300s
  16.     rm t300s
  17.     cmp t450 /bin/t450
  18.     rm t450
  19.     cmp vplot /bin/vplot
  20.     rm vplot
  21.     rm -f driver.o
  22.  
  23. tek:    driver.o
  24.     cc -n -s -o tek  driver.o -lt4014 -lm
  25. t300:    driver.o 
  26.     cc -n -s -o t300 driver.o -lt300 -lm
  27. t300s:    driver.o 
  28.     cc -n -s -o t300s driver.o -lt300s -lm
  29. t450:    driver.o 
  30.     cc -n -s -o t450 driver.o -lt450 -lm
  31.  
  32. vplot:    chrtab.o vplot.o
  33.     cc -n -s -o vplot vplot.o chrtab.o
  34.     rm vplot.o chrtab.o
  35.