diff options
Diffstat (limited to 'testprogs/win32/testmailslot/NMakefile')
-rw-r--r-- | testprogs/win32/testmailslot/NMakefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testprogs/win32/testmailslot/NMakefile b/testprogs/win32/testmailslot/NMakefile new file mode 100644 index 0000000..7551d7b --- /dev/null +++ b/testprogs/win32/testmailslot/NMakefile @@ -0,0 +1,13 @@ +# +# use nmake /f NMakefile [<target>] +# +INCLUDES=-I +CFLAGS=$(INCLUDES) -Zi -nologo + +all: testmailslot.exe + +clean: + del *~ *.obj testmailslot.exe + +testmailslot.exe: testmailslot.obj + $(CC) $(CFLAGS) -o testmailslot.exe testmailslot.obj $(LIBS) |