r22170: To get the smbclient blackbox test to pass again, we need to get the
[ira/wip.git] / testprogs / win32 / testmailslot / GNUmakefile
1 INCLUDES=-I.
2 CFLAGS=$(INCLUDES) 
3 CC=i586-mingw32msvc-gcc
4
5 all: testmailslot.exe
6
7 clean:
8         rm -f *~ *.obj testmailslot.exe 
9
10 .SUFFIXES: .obj .exe .c
11
12 testmailslot.exe: testmailslot.c
13
14 .c.exe: 
15         $(CC) $(CFLAGS) -o $@ $^ $(LIBS)