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-h / makefile.unx < prev    next >
Makefile  |  1992-01-26  |  408b  |  20 lines

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