home *** CD-ROM | disk | FTP | other *** search
/ AP Professional Graphics CD-ROM Library / AP Professional Graphics CD-ROM Library.iso / mac / Macintosh / Appendix / GemsII / Source Code Gems II / intersect / Makefile < prev   
Encoding:
Makefile  |  1995-03-08  |  199 b   |  13 lines  |  [TEXT/MSWD]

  1. CFLAGS = -g -I..
  2.  
  3. all:        intsph.o inttor.o
  4.  
  5. intsph.o:    intsph.c
  6.         cc $(CFLAGS) -c intsph.c -o intsph.o
  7.  
  8. inttor.o:    inttor.c
  9.         cc $(CFLAGS) -c inttor.c -o inttor.o
  10.  
  11. clean:
  12.         /bin/rm -f intsph.o inttor.o
  13.