mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 01:51:51 +00:00
The new protoc 1.5.2 reports warnings: `protoc-c` is deprecated. Please use `protoc` instead! Signed-off-by: Andrei Vagin <avagin@gmail.com>
55 lines
1.7 KiB
Makefile
55 lines
1.7 KiB
Makefile
all: test-c rpc_pb2.py criu
|
|
.PHONY: all
|
|
|
|
CFLAGS += -g -Werror -Wall -I.
|
|
LDLIBS += -lprotobuf-c
|
|
|
|
PYTHON ?= python3
|
|
|
|
run: all
|
|
@make -C .. loop
|
|
mkdir -p build/{imgs_errno,imgs_ps,imgs_c,imgs_loop,imgs_py}
|
|
chmod a+rwx build
|
|
chmod a+rwx build/{imgs_errno,imgs_ps,imgs_c,imgs_loop,imgs_py}
|
|
rm -f build/status
|
|
@# Create all log files to be accessible for anybody
|
|
@# so that they can be displayed by any user.
|
|
for i in imgs_errno/criu.log imgs_ps/page-server.log imgs_ps/dump.log \
|
|
imgs_c/restore-c.log imgs_loop/criu.log imgs_loop/dump-loop.log \
|
|
imgs_py/criu.log imgs_py/restore-py.log imgs_c/criu.log service.log; do \
|
|
touch build/$$i; chmod 666 build/$$i; \
|
|
done
|
|
sudo -g '#1000' -u '#1000' mkfifo build/status
|
|
@# Need to start the criu daemon here to access the pidfile.
|
|
@# The script read.py is used to wait until 'criu service'
|
|
@# is ready. As 'read -n 1' in some releases has a bug and does
|
|
@# not read correctly a \0, using python is a workaround.
|
|
sudo -g '#1000' -u '#1000' -- bash -c "exec 200<>build/status; \
|
|
./criu service -v4 -W build --address criu_service.socket \
|
|
-d --pidfile pidfile -o service.log --status-fd 200; \
|
|
$(PYTHON) read.py build/status"
|
|
rm -f build/status
|
|
chmod a+rw build/pidfile
|
|
sudo -g '#1000' -u '#1000' ./run.sh
|
|
sudo -g '#1000' -u '#1000' ./version.py
|
|
# run the configuration file via RPC test cases
|
|
./config_file.py build
|
|
|
|
criu: ../../../criu/criu
|
|
cp ../../../criu/criu $@
|
|
chmod u+s $@
|
|
|
|
test-c: rpc.pb-c.o test-c.o
|
|
|
|
test-c.o: test-c.c rpc.pb-c.c
|
|
|
|
rpc_pb2.py: rpc.proto
|
|
protoc --proto_path=. --python_out=. rpc.proto
|
|
|
|
rpc.pb-c.c: rpc.proto
|
|
protoc --proto_path=. --c_out=. rpc.proto
|
|
|
|
clean:
|
|
rm -rf build rpc.pb-c.o test-c.o test-c rpc.pb-c.c rpc.pb-c.h rpc_pb2.py rpc_pb2.pyc criu
|
|
.PHONY: clean
|