From 5438d7dad8d349f8fdc07a89870ddafb9c54a68f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 9 Feb 2009 11:54:34 +0100 Subject: testprogs/win32: add npecho_*2.c This exlores some details of message type named pipes. metze --- testprogs/win32/npecho/NMakefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'testprogs/win32/npecho/NMakefile') diff --git a/testprogs/win32/npecho/NMakefile b/testprogs/win32/npecho/NMakefile index b52a9c7ab7..a0951b0f88 100755 --- a/testprogs/win32/npecho/NMakefile +++ b/testprogs/win32/npecho/NMakefile @@ -1,7 +1,11 @@ INCLUDES=-I CFLAGS=$(INCLUDES) -Zi -nologo -all: npecho_client.exe npecho_server.exe +NPECHO = npecho_client.exe +# missing npecho_server.exe +NPECHO2 = npecho_client2.exe npecho_server2.exe + +all: $(NPECHO) $(NPECHO2) clean: del *~ *.obj *.exe @@ -11,3 +15,9 @@ npecho_client.exe: npecho_client.obj npecho_server.exe: npecho_server.obj $(CC) $(CFLAGS) -o npecho_server.exe npecho_server.obj $(LIBS) + +npecho_client2.exe: npecho_client2.obj + $(CC) $(CFLAGS) -o npecho_client2.exe npecho_client2.obj $(LIBS) + +npecho_server2.exe: npecho_server2.obj + $(CC) $(CFLAGS) -o npecho_server2.exe npecho_server2.obj $(LIBS) -- cgit