git.samba.org
/
ira
/
wip.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
When Windows initially creates a new value, the value name is "New Value #1".
[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)