summaryrefslogtreecommitdiff
path: root/testprogs/win32/testmailslot/Makefile
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-05-04 10:44:50 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:16:30 -0500
commitc531b7f66c0ffefda9417767a3fbb0e183bf3339 (patch)
treef252ed9e5e417ca336e63ac1d6a1defe42070b0e /testprogs/win32/testmailslot/Makefile
parent8bcfc14d645ecce7869ec5ea032b2fa2e5e65dfb (diff)
downloadsamba-c531b7f66c0ffefda9417767a3fbb0e183bf3339.tar.gz
samba-c531b7f66c0ffefda9417767a3fbb0e183bf3339.tar.bz2
samba-c531b7f66c0ffefda9417767a3fbb0e183bf3339.zip
r6611: Add mailslot test program
(This used to be commit fae95f740dde0d5c7268367a35d6f042e9f5f724)
Diffstat (limited to 'testprogs/win32/testmailslot/Makefile')
-rw-r--r--testprogs/win32/testmailslot/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/testprogs/win32/testmailslot/Makefile b/testprogs/win32/testmailslot/Makefile
new file mode 100644
index 0000000000..e307654fcb
--- /dev/null
+++ b/testprogs/win32/testmailslot/Makefile
@@ -0,0 +1,10 @@
+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)