home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / source / graphicgems4.lha / GemsIV / nurb_polyg / makefile < prev    next >
Encoding:
Makefile  |  1995-02-06  |  391 b   |  16 lines

  1. OBJS = NurbRefine.o NurbSubdiv.o NurbUtils.o NurbEval.o GGVecLib.o Main.o \
  2.     FakeWindow.o
  3.  
  4. nurb_polyg: $(OBJS)
  5.     $(CC) -o $@ $(OBJS) -lm
  6.  
  7. .c.o:
  8.     $(CC) -c $<
  9.  
  10. NurbRefine.c: nurbs.h GraphicsGems.h
  11. NurbSubdiv.c: nurbs.h drawing.h GraphicsGems.h
  12. NurbUtils.c:  nurbs.h GraphicsGems.h
  13. NurbEval.c:   nurbs.h GraphicsGems.h
  14. GGVecLib.c:   GraphicsGems.h
  15. Main.c:          nurbs.h drawing.h GraphicsGems.h
  16.