fix: list archive extraction and package creation errors

This commit is contained in:
ngn
2024-06-28 21:48:04 +03:00
parent 3b19e2840b
commit ed52710355
17 changed files with 192 additions and 140 deletions

View File

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