home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume4 / quickplot / part2 / testprogs.d / Makefile < prev   
Encoding:
Makefile  |  1986-11-30  |  497 b   |  29 lines

  1. all:    box circle lineh linev lined dlined arc
  2.  
  3. arc:    arc.c
  4.     cc -o arc arc.c -lplot -lm
  5.  
  6. box:    box.c
  7.     cc -o box box.c -lplot
  8.  
  9. circle:    circle.c
  10.     cc -o circle circle.c -lplot -lm
  11.  
  12. lineh:    lineh.c
  13.     cc -o lineh lineh.c -lplot
  14.  
  15. linev:    linev.c
  16.     cc -o linev linev.c -lplot
  17.  
  18. lined:    lined.c
  19.     cc -o lined lined.c -lplot
  20.  
  21. dlined:    dlined.c
  22.     cc -o dlined dlined.c -lplot
  23.  
  24. graphplot:
  25.     grplot
  26.     @echo 'type "quickplot tmpload" or "lplot tmpload | lpr -v"'
  27. clean:
  28.     rm -f box circle lineh linev lined tmpload dlined arc
  29.