Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « ns_ext « others « test - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d15224d52c60c29f488fe2f4d9367963eea7df73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
run: run_pidns run_net run_pid

run_net:
	./run.sh net

run_pid:
	./run.sh pid

run_pidns:
	unshare -fp -m --mount-proc --propagation private ./run_pidns.sh

clean:
	rm -rf images output  pidfile  pidfile2  pidfile3
.PHONY: clean run