blob: 7551d7bc0d71e558c63ede3a153f360e49846d91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# use nmake /f NMakefile [<target>]
#
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)
|