r10576: Add testprog for named pipes. Also add GNUmakefile's for cross-compilation
[samba.git] / testprogs / win32 / npecho / NMakefile
diff --git a/testprogs/win32/npecho/NMakefile b/testprogs/win32/npecho/NMakefile
new file mode 100755 (executable)
index 0000000..b52a9c7
--- /dev/null
@@ -0,0 +1,13 @@
+INCLUDES=-I 
+CFLAGS=$(INCLUDES) -Zi -nologo
+
+all: npecho_client.exe npecho_server.exe
+
+clean:
+       del *~ *.obj *.exe 
+
+npecho_client.exe: npecho_client.obj 
+       $(CC) $(CFLAGS) -o npecho_client.exe npecho_client.obj $(LIBS)
+
+npecho_server.exe: npecho_server.obj 
+       $(CC) $(CFLAGS) -o npecho_server.exe npecho_server.obj $(LIBS)