NODEBUG=1
!include <ntwin32.mak>

all: ssnpsend.exe pipesec.exe

ssnpsend.obj: ssnpsend.cpp
    $(cc) $(cflags) $(cvars) $(cdebug) ssnpsend.cpp

pipesec.obj: pipesec.cpp
    $(cc) $(cflags) $(cvars) $(cdebug) pipesec.cpp

ssnpsend.exe: ssnpsend.obj
    $(link) $(conlflags) $(ldebug) ssnpsend.obj $(conlibs) -out:ssnpsend.exe user32.lib

pipesec.exe: pipesec.obj
    $(link) $(conlflags) $(ldebug) pipesec.obj $(conlibs) -out:pipesec.exe advapi32.lib
