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