#
# Nifty James' Famous File Find Utility
#
# Version 1.00 of 30 September 1989
# (C) Copyright 1989 by Mike Blaszczak
# All Rights Reserved.
#
# MAKEFILE for Production Version
#

njfind.obj:	njfind.c
	cl /W3 /Ox /c njfind.c

njfind.exe:	njfind.obj
	link njfind /noi /noe /exepack /stack:4800;

