]> git.ipfire.org Git - thirdparty/systemd.git/blame - test/Makefile
test-execute: Add tests for new PassEnvironment= directive
[thirdparty/systemd.git] / test / Makefile
CommitLineData
279ade13 1# Just a little hook script to easy building when in this directory
898720b7 2.PHONY: all check clean
279ade13
LP
3
4all:
5 $(MAKE) -C ..
6
7clean:
898720b7
HH
8 @for i in TEST-[0-9]*; do \
9 [ -d $$i ] || continue ; \
10 [ -f $$i/Makefile ] || continue ; \
11 make -C $$i clean ; \
12 done
13
14check:
15 $(MAKE) -C .. all
16 @for i in TEST-[0-9]*; do \
17 [ -d $$i ] || continue ; \
18 [ -f $$i/Makefile ] || continue ; \
19 make -C $$i all ; \
20 done