home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 6 File / 06-File.zip / os2ntree.zip / MAKEFILE < prev    next >
Text File  |  1987-12-18  |  632b  |  23 lines

  1. #
  2. #    BSW-MAKE Makefile for the DOS 3.x version of NTREE,
  3. #    called NTREE.
  4. #
  5. #    Note that the library SLIBC3 is part of the Microsoft
  6. #    C Compiler for OS/2.  If you are not building this under
  7. #    that particular compiler, then simply remove the reference
  8. #    to the library name SLIBC3 below.  The compiler will then
  9. #    use the proper C runtime library for building NTREE.
  10. #
  11.  
  12. ntree.exe :    ntree.obj doscalls.obj
  13.         link ntree+doscalls,ntree,ntree/map,SLIBC3;
  14.         mapsym ntree
  15.         ECHO  DOS Version of NTREE has been built.
  16.  
  17. doscalls.obj :    doscalls.asm
  18.         masm doscalls;
  19.  
  20. ntree.obj :    ntree.c
  21.         cl -c -W0 -Ze -Zp -Zd ntree.c
  22.  
  23.