1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00
samba-mirror/testprogs/win32/midltests/Makefile
Stefan Metzmacher 115ad60125 midltests: add a midltests_tcp.exe tool
This uses a man in the middle approach in order to dump the
request and response pdus.

It also tests NDR32 and NDR64.

metze
2010-09-29 01:42:28 +02:00

17 lines
292 B
Makefile

all:
@echo "nmake targets:"
@echo " clean"
@echo " simple"
@echo " tcp"
clean:
@call nmake /f Makefile.simple /A /NOLOGO clean
@call nmake /f Makefile.tcp /A /NOLOGO clean
simple:
@call nmake /f Makefile.simple /A /NOLOGO all
tcp:
@call nmake /f Makefile.tcp /A /NOLOGO all