1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-29 21:47:30 +03:00
Jelmer Vernooij 4ad69c3dee r10576: Add testprog for named pipes. Also add GNUmakefile's for cross-compilation
using mingw32
(This used to be commit 30ba8fdc3dc8dba543686591a27b819b8f9444db)
2007-10-10 13:39:06 -05:00

16 lines
225 B
Makefile

INCLUDES=-I.
CFLAGS=$(INCLUDES)
CC=i586-mingw32msvc-gcc
all: testmailslot.exe
clean:
rm -f *~ *.obj testmailslot.exe
.SUFFIXES: .obj .exe .c
testmailslot.exe: testmailslot.c
.c.exe:
$(CC) $(CFLAGS) -o $@ $^ $(LIBS)