home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / TOOLKIT / BIDI / HEBREW / TELDIR / TELDIR.MAK < prev    next >
Text File  |  1995-04-20  |  2KB  |  61 lines

  1. # ----------------
  2. # TELDIR make file
  3. # ----------------
  4.  
  5. CC         = icc /Ti+ /c /Q+ /Gn- /Gd- /Se /Re /ss+ /Gm-
  6. LFLAGS     = /CODEVIEW /NOE /ALIGN:16 /EXEPACK /M /BASE:0x10000
  7. LINK       = ILINK /NOFREE $(LFLAGS)
  8. LIBS       = OS2386 + PMBIDI
  9.  
  10. IPF_COMPILER = ipfcbidi
  11.  
  12. .c.obj:
  13.     $(CC) -Fo$*.obj $*.c
  14.  
  15.  
  16. #-------------------------------------------------------------------------
  17. #  ---------------------------------
  18. #  NOTE ABOUT THE USE OF IPFCBIDI!
  19. #  ---------------------------------
  20. #
  21. #  The IPFCBIDI utility (the bidirectional version of IPFC) can be
  22. #  run only on a system with bidirectional support capabilites.
  23. #  As a result, the Hebrew .HLP file can be built only on such a system.
  24. #
  25. #  If you are running on a system with bidirectional support capabilites
  26. #  you can build the .HLP files by un-commenting the following line, and
  27. #  commenting the line just after it.
  28. #
  29. #-------------------------------------------------------------------------
  30. #  --> Activate the following line on a system with Bidirectional support:
  31. #all: teldir.exe teldir.hlp teldirh.hlp
  32. #
  33. #  --> Activate the following line on a system without Bidirectional support:
  34. all: teldir.exe
  35.  
  36.  
  37. #-------------------------------------------------------------------
  38. #   A list of all of the object files
  39. #-------------------------------------------------------------------
  40. teldir.l: teldir.mak
  41.     echo teldir.obj            > teldir.l
  42.     echo teldir.exe           >> teldir.l
  43.     echo teldir.map           >> teldir.l
  44.     echo $(LIBS)              >> teldir.l
  45.     echo teldir.def           >> teldir.l
  46.  
  47. teldir.obj: teldir.c
  48.  
  49. teldir.hlp: teldir.ipf
  50.     $(IPF_COMPILER) $*.ipf /W3  /L=ENU
  51.  
  52. teldirh.hlp: teldirh.ipf
  53.     $(IPF_COMPILER) $*.ipf /W3  /COUNTRY=972 /CODEPAGE=862 /L=HEB
  54.  
  55. teldir.res : teldir.rc teldir.h
  56.     rc -r TELDIR.RC
  57.  
  58. teldir.exe: teldir.obj teldir.l teldir.def teldir.res teldir.h
  59.     $(LINK) @teldir.l
  60.    rc teldir.res
  61.