about summary refs log tree commit diff stats
path: root/config.mk
diff options
context:
space:
mode:
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk11
1 files changed, 11 insertions, 0 deletions
diff --git a/config.mk b/config.mk
new file mode 100644
index 0000000..8de5d81
--- /dev/null
+++ b/config.mk
@@ -0,0 +1,11 @@
+PREFIX = /usr/local
+BUILD_DIR = build
+NAME = libuv_link_t
+SNAME = $(NAME).a
+DNAME = $(NAME).so
+
+CFLAGS = -W -Wall -Wvla -std=gnu99 -g -fPIC
+CFLAGS += $(shell pkg-config --cflags libuv)
+LDLIBS = $(shell pkg-config --libs libuv)
+
+INCLUDES = -I.