home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / source / graphicgems4.lha / GemsIV / vert_norm / Makefile next >
Encoding:
Makefile  |  1995-02-06  |  172 b   |  12 lines

  1. CC = cc
  2. CFLAGS = -I/usr/ph/include -DSTANDALONE_TEST
  3.  
  4. test: test.o smooth.o
  5.     $(CC) -o test test.o smooth.o -lm
  6.  
  7. clean:
  8.     rm -f *.o test
  9.  
  10. smooth.o: smooth.h
  11. test.o: smooth.h
  12.