home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / gfx / 3d / irit / docs / cexample / makefile.unx < prev    next >
Encoding:
Makefile  |  1995-02-12  |  527 b   |  22 lines

  1. IRIT_DIR = /mach/isaac/misc2/gershon/irit/indy
  2.  
  3. include $(IRIT_DIR)/makeflag.unx
  4.  
  5. All: polyarea polygons transfrm lst_sqrs
  6.  
  7. OBJS1    = polyarea.o
  8. polyarea: $(OBJS1)
  9.     $(CC) $(CFLAGS) -o polyarea $(OBJS1) $(LIBS) -lm $(MORELIBS)
  10.  
  11. OBJS2    = polygons.o
  12. polygons: $(OBJS2)
  13.     $(CC) $(CFLAGS) -o polygons $(OBJS2) $(LIBS) -lm $(MORELIBS)
  14.  
  15. OBJS3    = transfrm.o
  16. transfrm: $(OBJS3)
  17.     $(CC) $(CFLAGS) -o transfrm $(OBJS3) $(LIBS) -lm $(MORELIBS)
  18.  
  19. OBJS4    = lst_sqrs.o
  20. lst_sqrs: $(OBJS4)
  21.     $(CC) $(CFLAGS) -o lst_sqrs $(OBJS4) $(LIBS) -lm $(MORELIBS)
  22.