diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-07-02 20:21:34 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-07-18 10:04:44 -0400 |
commit | 72cdb3e783174dcf9223a49f03e3b0e2ca95ddb8 (patch) | |
tree | e7c6495a3b56e95f62658845eeebff7ec256f8d4 /test | |
parent | 0d372efadf2152865757b1e7b06522abd2229899 (diff) | |
download | systemd-72cdb3e783174dcf9223a49f03e3b0e2ca95ddb8.tar.gz |
build-sys: drop automake support
v2:
- also mention m4
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/Makefile b/test/Makefile deleted file mode 100644 index 987a32548f..0000000000 --- a/test/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -# Just a little hook script to easy building when in this directory -.PHONY: all check clean - -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 |