mirror of
https://github.com/samba-team/samba.git
synced 2025-01-29 21:47:30 +03:00
4ad69c3dee
using mingw32 (This used to be commit 30ba8fdc3dc8dba543686591a27b819b8f9444db)
16 lines
225 B
Makefile
16 lines
225 B
Makefile
INCLUDES=-I.
|
|
CFLAGS=$(INCLUDES)
|
|
CC=i586-mingw32msvc-gcc
|
|
|
|
all: testmailslot.exe
|
|
|
|
clean:
|
|
rm -f *~ *.obj testmailslot.exe
|
|
|
|
.SUFFIXES: .obj .exe .c
|
|
|
|
testmailslot.exe: testmailslot.c
|
|
|
|
.c.exe:
|
|
$(CC) $(CFLAGS) -o $@ $^ $(LIBS)
|