new: finishing up base mptp functions

This commit is contained in:
ngn
2024-06-22 04:18:00 +03:00
parent cb66106e50
commit 19c98b763d
8 changed files with 322 additions and 160 deletions

View File

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