Skip to content

Instantly share code, notes, and snippets.

@shigeki
shigeki / Makefile
Created October 28, 2011 05:43
Hello World by libuv
hello_uv: hello_uv.c
gcc -g -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I../libuv/include -o hello_uv hello_uv.c ../libuv/uv.a -pthread -lrt -lm
clean:
rm hello_uv