mirror of
https://github.com/samba-team/samba.git
synced 2025-02-18 17:57:55 +03:00
11 lines
206 B
Plaintext
11 lines
206 B
Plaintext
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)
|