home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 3 / RISC_DISC_3.iso / resources / etexts / gems / gemsi / 2dclip / makefile. < prev   
Makefile  |  1992-09-08  |  212b  |  14 lines

  1. LIBFILE = ../gemslib.a
  2.  
  3. CFLAGS = $(GENCFLAGS) -I..
  4.  
  5. OFILES = clip.o bio.o cross.o
  6.  
  7. $(LIBFILE): $(OFILES)
  8.     ar rcs $(LIBFILE) $(OFILES)
  9.  
  10. clean:
  11.     /bin/rm -f clip.o bio.o cross.o
  12.  
  13. $(OFILES): line.h ../GraphicsGems.h
  14.