mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-19 09:35:12 +00:00
17 lines
276 B
Makefile
17 lines
276 B
Makefile
all: test piggie
|
|
|
|
test:
|
|
make -C src/test
|
|
|
|
stats:
|
|
mkdir -p src/stats/
|
|
protoc --go_out=src/stats/ --proto_path=../images/ ../images/stats.proto
|
|
|
|
piggie: piggie.c
|
|
gcc piggie.c -o piggie
|
|
|
|
clean:
|
|
rm -rf test_images/
|
|
|
|
run_test: test piggie
|
|
unshare -fpm --mount-proc ./test.sh
|