home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-05-19 | 570 b | 23 lines |
- # makefile for ntwhich
- # This is free software and can be modified and redistributed under
- # certain conditions described in the file COPYING.TXT. The
- # Disclaimer of Warranty and License for this free software are also
- # contained in the file COPYING.TXT.
- #
-
- !include <ntwin32.mak>
- FILES=ntwhich.c ntwhich.h makefile ntwhich.exe ntwhich.txt copying.txt
- all: ntwhich.exe
-
- ntwhich.exe: ntwhich.obj
- $(link) $(conflags) -out:$*.exe $** $(conlibs)
-
- .c.obj:
- $(cc) $(cflags) $(cvars) $*.c
-
- clean:
- -erase *.obj
-
- distrib:
- -pkzip ntwhich.zip $(FILES)
-