Files

16 lines
225 B
Makefile
Raw Permalink Normal View History

2019-02-16 00:16:52 +01:00
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)