aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOskari Timperi <oskari.timperi@iki.fi>2014-05-26 09:48:02 +0300
committerOskari Timperi <oskari.timperi@iki.fi>2014-05-26 09:48:02 +0300
commit36972f8ca14aabc0984c0ad87e5d26bac1ce3f15 (patch)
treef42af934c348f5c0a2dc668e2e45025297f1ac5b /Makefile
parent40ea6cf3817d7a7ac053ed9c1d3e44910e0475c8 (diff)
downloadlibuvh-36972f8ca14aabc0984c0ad87e5d26bac1ce3f15.tar.gz
libuvh-36972f8ca14aabc0984c0ad87e5d26bac1ce3f15.zip
mingw/msys fixes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 479e14e..322c4a5 100644
--- a/Makefile
+++ b/Makefile
@@ -7,6 +7,13 @@ LDFLAGS +=
CPPFLAGS += -Isrc
LDLIBS += -luv
+PLATFORM = $(shell uname -s | tr [A-Z] [a-z])
+
+ifeq ($(findstring mingw32,$(PLATFORM)),mingw32)
+LDLIBS += -lws2_32 -lpsapi -liphlpapi
+else
+endif
+
all: libuvh.a examples
.PHONY: examples