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.tc < prev    next >
Makefile  |  1992-01-26  |  705b  |  36 lines

  1. #
  2. # This make file is for the poly3d-h utility for Borland C++ 2.0
  3. # (Using Ansi though).
  4. #
  5. # Only large model is created here.
  6. #
  7. #                Gershon Elber, July 1990
  8. #
  9.  
  10. # Works only on TC++ 1.0 make and up - swap out make before invoking command.
  11. .SWAP
  12.  
  13. # Includes generic definitions.
  14. !include "..\makeflag.dos"
  15.  
  16. OBJS =    out-edge.obj poly3d-h.obj prepdata.obj
  17.  
  18. poly3d-h.exe: $(OBJS)
  19.     $(LNK) @&&!
  20. $(TC_LIB_DIR)\c0l+
  21. $(OBJS)
  22. poly3d-h.exe
  23. poly3d-h.map
  24. $(LIBS)
  25. !$(LFLAGS)
  26.  
  27. install: poly3d-h.exe
  28.     copy poly3d-h.exe $(BIN_DIR)
  29.     del poly3d-h.exe 
  30.     copy poly3d-h.cfg $(BIN_DIR)
  31.  
  32. # Dependencies starts here - do not touch, generated automatically.
  33. out-edge.obj:    program.h
  34. poly3d-h.obj:    program.h
  35. prepdata.obj:    program.h
  36.