Files
wmic/Samba/testprogs/win32/testmailslot/GNUmakefile
T
2019-02-16 00:16:52 +01:00

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)