8 lines
136 B
Makefile
8 lines
136 B
Makefile
CC = gcc
|
|
|
|
all: ../dist/example_pool
|
|
|
|
../dist/example_pool: pool/*.c ../dist/libmp.so
|
|
mkdir -pv ../dist
|
|
$(CC) -L../dist $< -lmp -o $@
|