#
# Makefile for SieFuzzy example for Microsoft C Version 7.0 or later.
#

all : qs.dll

qs.obj : $*.c $*.h
    cl -c -nologo -AMw -W3 -G2sw -Od -DWINDOWS $*.c

qs.dll : $*.obj $*.def $*.res
    link /NOD/NOE/align:16/LI $*,$*.dll,,libw mdllcew fplw.lib,$*.def
    rc $*.res $*.dll
    implib $*.lib $*.def

# Deletes all files except for the sources
clean :
    -del *.map
    -del *.exe
    -del *.dll
    -del *.lib
    -del *.obj
