blob: e307654fcb697c36a8483cd37a6bf8f49f4388f0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
INCLUDES=-I
CFLAGS=$(INCLUDES) -Zi -nologo
all: testmailslot.exe
clean:
del *~ *.obj testmailslot.exe
testmailslot.exe: testmailslot.obj
$(CC) $(CFLAGS) -o testmailslot.exe testmailslot.obj $(LIBS)
|