criu/test/libcriu/Makefile
Kir Kolyshkin 1fa0c0c058 test/*Makefile: add/append PHONY targets
...where they are missing.

Signed-off-by: Kir Kolyshkin <kir@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
2014-01-11 09:12:35 +04:00

12 lines
176 B
Makefile

all: build/test
.PHONY: all
build/test: build/test.o
gcc $^ -L ../../lib -lcriu -o $@
build/test.o: test.c
gcc -c $^ -I ../../lib -o $@
clean:
rm -rf build
.PHONY: clean