mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
d133ef997d
metze
14 lines
246 B
Plaintext
14 lines
246 B
Plaintext
#
|
|
# 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)
|