home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 505a.lha / GrapicsGems / PolyScan / Makefile < prev    next >
Makefile  |  1991-05-01  |  380b  |  13 lines

  1. # Makefile for scantest, test program for generic convex polygon scan conversion
  2. #
  3. # Note: fancytest.c needs a main routine and several auxiliary routines
  4. # in order to be compiled.
  5.  
  6. CFLAGS = $(GENCFLAGS)
  7.  
  8. scantest: scantest.o poly_scan.o poly.o
  9.     $(CC) $(CFLAGS) -o scantest scantest.o poly_scan.o poly.o -lm
  10.  
  11. clean:
  12.     /bin/rm -f scantest.o poly_clip.o poly_scan.o poly.o scantest
  13.