mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
115ad60125
This uses a man in the middle approach in order to dump the request and response pdus. It also tests NDR32 and NDR64. metze
17 lines
292 B
Makefile
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
|