1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-27 18:55:40 +03:00
systemd/test/Makefile

21 lines
398 B
Makefile
Raw Normal View History

2010-01-20 20:26:29 +03:00
# Just a little hook script to easy building when in this directory
.PHONY: all check clean
2010-01-20 20:26:29 +03:00
all:
$(MAKE) -C ..
clean:
@for i in TEST-[0-9]*; do \
[ -d $$i ] || continue ; \
[ -f $$i/Makefile ] || continue ; \
make -C $$i clean ; \
done
check:
$(MAKE) -C .. all
@for i in TEST-[0-9]*; do \
[ -d $$i ] || continue ; \
[ -f $$i/Makefile ] || continue ; \
make -C $$i all ; \
done