mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-23 18:19:39 +00:00
This test is similiar to test/rpc, and can also be used as an example of using libcriu. Signed-off-by: Ruslan Kuprieiev <kupruser@gmail.com> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
10 lines
150 B
Makefile
10 lines
150 B
Makefile
all: build/test
|
|
|
|
build/test: build/test.o
|
|
gcc $^ -L ../../lib -lcriu -o $@
|
|
|
|
build/test.o: test.c
|
|
gcc -c $^ -I ../../lib -o $@
|
|
|
|
clean:
|
|
rm -rf build
|