home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / sun / volume2 / sunplot / Makefile next >
Encoding:
Makefile  |  1990-02-04  |  364 b   |  19 lines

  1. # The names of the installed binary and manual page.
  2. # Feel free to change.
  3. BINARY    = /usr/local/sunplot
  4. MANUAL    = /usr/man/manl/sunplot.l
  5.  
  6. CFLAGS    = -O
  7.  
  8. sunplot:    sunplot.o
  9.         $(CC) -o sunplot sunplot.o -lsuntool -lsunwindow -lpixrect
  10.  
  11. install:    sunplot
  12.         cp sunplot $(BINARY)
  13.         cp sunplot.1 $(MANUAL)
  14.  
  15. clean:
  16.         rm -f sunplot *.o core make.out
  17.  
  18. sunplot.o:    sunplot.icon
  19.