#--------------------------------------------------------------
#
# MAKEFILE - creates LZSMAL32 with Microsoft C 8 (32-Bit)
#
# Use NMAKE to Compile.
#
#--------------------------------------------------------------

!include <ntwin32.mak>

LIB = $(LIB);..\msvc	# This Assumes we have the MSVC-LIB-Files installed in ..\MSVC,
			# because they are different from the Borland LIB-Files for 32-Bit-Applications
INCLUDE = $(INCLUDE);..

all: lzsmal32.exe

lzsmal32.exe: lzsmall.obj lzsmall.res
  $(link) $(guiflags) -out:$*.exe $** $(guilibs) lzapi32.lib shell32.lib
#  $(link) $(linkdebug) $(guiflags) -out:$*.exe $** $(guilibs) lzapi32.lib shell32.lib

lzsmall.obj: lzsmall.c lzsmall.rh

.c.obj:
  $(cc) $(cdebug) $(cflags) $(cvars) $*.c

lzsmall.res: lzsmall.rc lzsmall.ico lzsmall.rh
    $(rc) $(rcvars) -r -fo $*.res $*.rc

