2024-06-20 00:34:32 +00:00
|
|
|
CC = gcc
|
|
|
|
|
2024-06-22 01:18:00 +00:00
|
|
|
all: ../dist/example_pool ../dist/example_server
|
2024-06-20 00:34:32 +00:00
|
|
|
|
|
|
|
../dist/example_pool: pool/*.c ../dist/libmp.so
|
|
|
|
mkdir -pv ../dist
|
2024-06-22 01:18:00 +00:00
|
|
|
$(CC) -L../dist $< -lmp -o $@
|
|
|
|
|
|
|
|
../dist/example_server: server/*.c ../dist/libmp.so
|
|
|
|
mkdir -pv ../dist
|
|
|
|
$(CC) -L../dist $< -lmp -o $@
|