home *** CD-ROM | disk | FTP | other *** search
Makefile | 1987-12-18 | 632 b | 23 lines |
- #
- # BSW-MAKE Makefile for the DOS 3.x version of NTREE,
- # called NTREE.
- #
- # Note that the library SLIBC3 is part of the Microsoft
- # C Compiler for OS/2. If you are not building this under
- # that particular compiler, then simply remove the reference
- # to the library name SLIBC3 below. The compiler will then
- # use the proper C runtime library for building NTREE.
- #
-
- ntree.exe : ntree.obj doscalls.obj
- link ntree+doscalls,ntree,ntree/map,SLIBC3;
- mapsym ntree
- ECHO DOS Version of NTREE has been built.
-
- doscalls.obj : doscalls.asm
- masm doscalls;
-
- ntree.obj : ntree.c
- cl -c -W0 -Ze -Zp -Zd ntree.c
-