1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00
samba-mirror/testprogs/win32/testmailslot/GNUmakefile
2010-05-19 13:59:45 +02:00

17 lines
249 B
Makefile

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