Added clibs-net and clibs-buffer to 3rdparty
This commit is contained in:
parent
b5cba7bf57
commit
16fff2fd51
12 changed files with 1589 additions and 0 deletions
17
src/3rdparty/clib-net/Makefile
vendored
Normal file
17
src/3rdparty/clib-net/Makefile
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
|
||||
CC ?= gcc
|
||||
SRC = $(wildcard src/*.c) tests/simple.c
|
||||
DEPS = $(wildcard deps/*/*.c)
|
||||
CFLAGS = -std=c++11\
|
||||
-Iinclude\
|
||||
-Isrc\
|
||||
-Ideps\
|
||||
-Ideps/libuv/include\
|
||||
-Ldeps/libuv/build/Release\
|
||||
-Wall -Wno-unused-function
|
||||
LDFLAGS = -lcrypto -lssl -luv
|
||||
|
||||
test: $(SRC)
|
||||
$(CC) $(CFLAGS) -o $@ $(SRC) $(DEPS) $(LDFLAGS)
|
||||
|
||||
.PHONY: test
|
Loading…
Add table
Add a link
Reference in a new issue