home *** CD-ROM | disk | FTP | other *** search
- #
- # Microsoft MAKEfile for NTREE under OS/2
- #
- # Because the API does not correctly save DTAs in recursive
- # directory enumeration (via the directory handles), NTREE will
- # missmany directories. In the event that the API is fixed, then
- # add the following line to this makefile to build a version of
- # NTREE that will run under OS/2 as well as under DOS 3.x.
- #
- # BIND ntree.exe \lib\doscalls.lib -o xntree.exe
- #
- # Note that the NTREE.C source can be used to build an MS-DOS version
- # of NTREE. In order to build the OS/2 version, the symbol OS2 must be
- # defined at compile time (using the /D option of the C compiler).
- # See MAKEFILE. to see how to build an MS-DOS version of NTREE.
- #
-
- ntree.obj : ntree.c
- CL -c /AS /Zp /DOS2 ntree.c
-
- ntreecpy.obj : ntreecpy.asm
- MASM /MX ntreecpy,ntreecpy,ntreecpy;
-
- ntree.exe : ntree.obj ntreecpy.obj
- LINK /CODEVIEW ntree+ntreecpy,ntree,ntree/MAP,DOSCALLS+SLIBCP;
- ECHO OS/2 version of NTREE has been built.
-