# Copyright (c) 1991 Microsoft Corporation. All rights reserved.

all: handler.dll

handler.obj: handler.asm handler.inc
    masm -v -ML -ZI -L handler,handler;

libentry.obj: libentry.asm
   masm -Mx libentry,libentry;

handler.dll: libentry.obj handler.obj handler.def
    link handler libentry, handler.dll, , /NOE /NOD mdllcew libw, handler.def
    rc handler.dll
    implib handler.lib handler.def
