home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / i / iritsm3s.zip / iritfltr / makefile.tc < prev    next >
Makefile  |  1992-02-01  |  1KB  |  65 lines

  1. #
  2. # This make file is for the irit2ray utility for Borland C++ 2.0
  3. # (Using Ansi C 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. IRIT2RAY_OBJS = irit2ray.obj
  17.  
  18. IRIT2NFF_OBJS = irit2nff.obj
  19.  
  20. DAT2IRIT_OBJS = dat2irit.obj
  21.  
  22.  
  23. all: irit2ray.exe irit2nff.exe dat2irit.exe
  24.  
  25.  
  26. irit2ray.exe: $(IRIT2RAY_OBJS)
  27.     $(LNK) @&&!
  28. $(TC_LIB_DIR)\c0l+
  29. $(IRIT2RAY_OBJS)
  30. irit2ray.exe
  31. irit2ray.map
  32. $(LIBS)
  33. !$(LFLAGS)
  34.  
  35.  
  36. irit2nff.exe: $(IRIT2NFF_OBJS)
  37.     $(LNK) @&&!
  38. $(TC_LIB_DIR)\c0l+
  39. $(IRIT2NFF_OBJS)
  40. irit2nff.exe
  41. irit2nff.map
  42. $(LIBS)
  43. !$(LFLAGS)
  44.  
  45.  
  46. dat2irit.exe: $(DAT2IRIT_OBJS)
  47.     $(LNK) @&&!
  48. $(TC_LIB_DIR)\c0l+
  49. $(DAT2IRIT_OBJS)
  50. dat2irit.exe
  51. dat2irit.map
  52. $(LIBS)
  53. !$(LFLAGS)
  54.  
  55.  
  56. install: irit2ray.exe irit2nff.exe dat2irit.exe
  57.     copy irit2ray.exe $(BIN_DIR)
  58.     del irit2ray.exe 
  59.     copy irit2nff.exe $(BIN_DIR)
  60.     del irit2nff.exe 
  61.     copy dat2irit.exe $(BIN_DIR)
  62.     del dat2irit.exe 
  63.  
  64. # Dependencies starts here - do not touch, generated automatically.
  65.