home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / i / iritsm3s.zip / poly3d-r / makefile.unx < prev    next >
Makefile  |  1992-02-25  |  473b  |  23 lines

  1.  
  2. #
  3. # Makefile for the POLY3D-R rendering program.
  4. #
  5.  
  6. include ../makeflag.unx
  7.  
  8. OBJS    = poly3d-r.o prepdata.o colortbl.o evalcolr.o scandata.o
  9.  
  10. poly3d-r:    $(OBJS)
  11.     $(CC) $(CFLAGS) -o poly3d-r $(OBJS) $(LIBS) -lm $(MORELIBS)
  12.  
  13. install: poly3d-r
  14.     mv -f poly3d-r $(BIN_DIR)
  15.     cp poly3d-r.cfg $(BIN_DIR)
  16.  
  17. # Dependencies starts here - do not touch, generated automatically.
  18. colortbl.o:    program.h
  19. evalcolr.o:    program.h
  20. poly3d-r.o:    program.h
  21. prepdata.o:    program.h
  22. scandata.o:    program.h
  23.