criu/test/app-emu/make/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

13 lines
144 B
Makefile

all: foo1.o foo2.o foo3.o foo4.o
echo "Done"
.PHONY: all
%.o: %.c
gcc -c $< -o $@
foo%.c: tmpl.c
cp $< $@
clean:
rm -f *.o
.PHONY: clean