summaryrefslogtreecommitdiff
path: root/testprogs/win32/testmailslot/GNUmakefile
blob: a41fb91efb04192e2d9794b1b368760bd911675f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)