!include <ntwin32.mak>


all: thunk32.exe


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

thunk32.rbj: thunk32.rc thunk32.h
    rc -r -fo thunk32.res thunk32.rc
    cvtres -$(CPU) thunk32.res -o thunk32.rbj

thunk32.exe: thunk32.obj ut32.lib thunk32.rbj thunk32.def
    $(link) $(linkdebug) $(guiflags) -verbose -out:thunk32.exe thunk32.obj ut32.lib thunk32.rbj $(guilibs) 
