mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
Signed-off-by: Andrew Vagin <avagin@virtuozzo.com> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
13 lines
257 B
Makefile
13 lines
257 B
Makefile
all: ext-mount.so ns_init
|
|
|
|
ext-mount.so: ext-mount.c
|
|
gcc -g -Werror -Wall -shared -nostartfiles ext-mount.c -o ext-mount.so -iquote ../../../include -fPIC
|
|
|
|
ns_init: ns_init.o
|
|
gcc -static $< -o $@
|
|
|
|
ns_init.o: ns_init.c
|
|
gcc -c $< -o $@
|
|
|
|
run: all
|
|
./run.sh
|