mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-22 09:39:13 +00:00
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>
11 lines
118 B
Makefile
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
|