From 4ad69c3deec3470849270fb180a78f8a4e78f854 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 28 Sep 2005 13:47:39 +0000 Subject: r10576: Add testprog for named pipes. Also add GNUmakefile's for cross-compilation using mingw32 (This used to be commit 30ba8fdc3dc8dba543686591a27b819b8f9444db) --- testprogs/win32/npecho/NMakefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 testprogs/win32/npecho/NMakefile (limited to 'testprogs/win32/npecho/NMakefile') diff --git a/testprogs/win32/npecho/NMakefile b/testprogs/win32/npecho/NMakefile new file mode 100755 index 0000000000..b52a9c7ab7 --- /dev/null +++ b/testprogs/win32/npecho/NMakefile @@ -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) -- cgit