diff options
Diffstat (limited to 'testprogs/win32/npecho/NMakefile')
-rwxr-xr-x | testprogs/win32/npecho/NMakefile | 13 |
1 files changed, 13 insertions, 0 deletions
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) |