diff options
Diffstat (limited to 'testprogs/win32/testmailslot/GNUmakefile')
-rw-r--r-- | testprogs/win32/testmailslot/GNUmakefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testprogs/win32/testmailslot/GNUmakefile b/testprogs/win32/testmailslot/GNUmakefile new file mode 100644 index 0000000..a41fb91 --- /dev/null +++ b/testprogs/win32/testmailslot/GNUmakefile @@ -0,0 +1,16 @@ +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) |