home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 6 File / 06-File.zip / os2ntree.zip / NTREE.MAK < prev    next >
Text File  |  1988-03-01  |  991b  |  28 lines

  1. #
  2. #    Microsoft MAKEfile for NTREE under OS/2
  3. #
  4. #  Because the API does not correctly save DTAs in recursive
  5. #  directory enumeration (via the directory handles), NTREE will
  6. #  missmany directories.  In the event that the API is fixed, then
  7. #  add the following line to this makefile to build a version of
  8. #  NTREE that will run under OS/2 as well as under DOS 3.x.
  9. #
  10. #    BIND ntree.exe \lib\doscalls.lib -o xntree.exe
  11. #
  12. #  Note that the NTREE.C source can be used to build an MS-DOS version
  13. #  of NTREE.  In order to build the OS/2 version, the symbol OS2 must be
  14. #  defined at compile time (using the /D option of the C compiler).
  15. #  See MAKEFILE. to see how to build an MS-DOS version of NTREE.
  16. #
  17.  
  18. ntree.obj :    ntree.c
  19.         CL -c /AS /Zp /DOS2 ntree.c
  20.  
  21. ntreecpy.obj :    ntreecpy.asm
  22.         MASM /MX ntreecpy,ntreecpy,ntreecpy;
  23.  
  24. ntree.exe :    ntree.obj ntreecpy.obj
  25.         LINK /CODEVIEW ntree+ntreecpy,ntree,ntree/MAP,DOSCALLS+SLIBCP;
  26.         ECHO  OS/2 version of NTREE has been built.
  27.  
  28.