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

  1. #
  2. #   This version of MAKEINIT is for the Windows client software.
  3. #
  4.  
  5. #
  6. #   _dsk_drv is the drive where tools are stored.  i.e. compilers/sdks/etc
  7. #   admin4f, a DOS environment variable, can be set to the driver letter
  8. #
  9. #   if you don't define admin4f, then we default to O:
  10. #
  11. !ifdef %admin4f
  12. _dsk_drv = $(%admin4f)
  13. !else
  14. _dsk_drv = o
  15. !endif
  16.  
  17. #
  18. #   Change the following path to the location where you installed BC++
  19. #
  20. ccpath=$(_dsk_drv):\p\bcpp\30
  21.  
  22. #
  23. #   Change the following path to the location where you installed C XFace Win
  24. #
  25. nwpath=$(_dsk_drv):\p\rel\cint\win\13sdk
  26.  
  27. wcc = $(ccpath)\bin\bcc              # location of Windows compiler
  28. wccp = $(ccpath)\bin\bccp            # location of Windows protected compiler
  29. linker = $(ccpath)\bin\tlink         # location of linker
  30. librarian = $(ccpath)\bin\tlib       # location of librarian
  31. inc_dir = $(ccpath)\include;$(nwpath)\include   # location of include files
  32. lib_dir = $(ccpath)\lib              # location of libraries
  33.