criu/test/app-emu/make/Makefile
Pavel Emelyanov 1a1a1861dd tests: Add new "real-life" test suit
The intention is to put here tests, that check how real apps
work. Initially I test that make -j4 works. This test is very
basic (uses sleep to wait for make to fork everybody) and a
syntetic .c file (quite big though).

Extend and use.

Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
2012-04-12 13:33:24 +04:00

11 lines
118 B
Makefile

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