home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 96-1 / novell-nsepro-1996-1-cd2.iso / download / netware / dax1.exe / MAKEINIT < prev   
Text File  |  1992-07-15  |  2KB  |  53 lines

  1.  
  2. #
  3. #   This MAKEINIT can be used for all of the MAKEFILEs except the Windows
  4. #   client version.  A separate version is provided for Windows clients.
  5. #
  6.  
  7. #
  8. #   _dsk_drv is the drive where tools are stored.  i.e. compilers/sdks/etc
  9. #   admin4f, a DOS environment variable, can be set to the driver letter
  10. #
  11. #   if you don't define admin4f, then we default to O:
  12. #
  13. !ifdef %admin4f
  14. _dsk_drv = $(%admin4f)
  15. !else
  16. _dsk_drv = o
  17. !endif
  18.  
  19. #
  20. #   Change the following path to the location where you installed WATCOM C
  21. #
  22. ccpath=$(_dsk_drv):\p\novc286\20
  23.  
  24. #
  25. #   Change the following path to the location where you installed WATCOM C/386
  26. #
  27. c3path=$(_dsk_drv):\p\novc386\sdkb
  28.  
  29. #
  30. #   Change the following path to the location where you installed C XFace DOS
  31. #
  32. nwpath=$(_dsk_drv):\p\rel\cint\dos\v12
  33.  
  34. #
  35. #   Change the following path to the location where you installed NWCNLMs
  36. #
  37. n3path=$(_dsk_drv):\p\novc386\sdkc
  38.  
  39. wcc = $(ccpath)\bin\wcc              # location of DOS compiler
  40. wccp = $(ccpath)\bin\wccp            # location of DOS protected compiler
  41. wcc386 = $(c3path)\bin\wcc386        # location of 386 compiler
  42. wcc386p = $(c3path)\bin\wcc386p      # location of 386 protected compiler
  43. linker = $(c3path)\binb\wlink        # location of linker
  44. librarian = $(c3path)\binb\wlib      # location of librarian
  45. inc_dir = $(ccpath)\h;$(nwpath)\inc  # location of include files
  46. inc_386 = $(n3path)\h                # location of include files
  47. code_386 = $(c3path)\bin\386wcgl.exe # location and name of 386 code generator
  48. code_gen = $(ccpath)\bin\i86wcgl.exe # location and name of code generator
  49. lib_dir = $(ccpath)\lib;$(nwpath)\watc  # location of DOS libraries
  50. startup = $(n3path)\imp\prelude      # prelude module (start-up code)
  51. clibimp = $(n3path)\imp\clib.imp     # the clib import file
  52. mathimp = $(n3path)\imp\mathlib.imp  # the math import file
  53.