home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 3 / RISC_DISC_3.iso / resources / etexts / gems / gemsii / intersect / makefile. < prev   
Makefile  |  1992-09-17  |  199b  |  13 lines

  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.