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