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

  1. #
  2. # This make file is for the poly3d-r 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 =  colortbl.obj evalcolr.obj poly3d-r.obj \
  17.     prepdata.obj scandata.obj
  18.  
  19. poly3d-r.exe: $(OBJS)
  20.     $(LNK) @&&!
  21. $(TC_LIB_DIR)\c0l+
  22. $(OBJS)
  23. poly3d-r.exe
  24. poly3d-r.map
  25. $(LIBS)
  26. !$(LFLAGS)
  27.  
  28. install: poly3d-r.exe
  29.     copy poly3d-r.exe $(BIN_DIR)
  30.     del poly3d-r.exe 
  31.     copy poly3d-r.cfg $(BIN_DIR)
  32.  
  33. # Dependencies starts here - do not touch, generated automatically.
  34. colortbl.obj:    program.h
  35. evalcolr.obj:    program.h
  36. poly3d-r.obj:    program.h
  37. prepdata.obj:    program.h
  38. scandata.obj:    program.h
  39.