1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
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)