mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
d18fbda0d0
metze
17 lines
249 B
Makefile
17 lines
249 B
Makefile
INCLUDES=-I.
|
|
CFLAGS=$(INCLUDES)
|
|
MINGW_CC = i586-mingw32msvc-cc
|
|
CC = $(MINGW_CC)
|
|
|
|
all: testmailslot.exe
|
|
|
|
clean:
|
|
rm -f *~ *.obj testmailslot.exe
|
|
|
|
.SUFFIXES: .obj .exe .c
|
|
|
|
testmailslot.exe: testmailslot.c
|
|
|
|
.c.exe:
|
|
$(CC) $(CFLAGS) -o $@ $^ $(LIBS)
|