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)