first commit

This commit is contained in:
ngn
2024-06-20 03:34:32 +03:00
commit 637b8c02e6
19 changed files with 949 additions and 0 deletions

7
examples/Makefile Normal file
View File

@ -0,0 +1,7 @@
CC = gcc
all: ../dist/example_pool
../dist/example_pool: pool/*.c ../dist/libmp.so
mkdir -pv ../dist
$(CC) -L../dist $< -lmp -o $@