kwo pushed a commit to branch master. http://git.enlightenment.org/legacy/imlib2.git/commit/?id=e8b564f141fe1bc64180ed17e44db7275c0fac89
commit e8b564f141fe1bc64180ed17e44db7275c0fac89 Author: Kim Woelders <[email protected]> Date: Sat Apr 9 13:39:27 2022 +0200 build: Tweaks - Let test depend on src - Run tests sequentially --- Makefile.am | 5 +++-- test/Makefile.am | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 5f07e1b..b9c6b65 100644 --- a/Makefile.am +++ b/Makefile.am @@ -39,8 +39,9 @@ $(top_builddir)/$(PACKAGE).spec: FORCE sed "s/\@PACKAGE\@/@PACKAGE@/;s/\@VERSION\@/@VERSION@/;s/\@RPM_RELEASE\@/$(RPM_RELEASE)/" \ $(top_srcdir)/$(PACKAGE).spec.in > $@ -.PHONY: doc test -doc test: +.PHONY: doc src test +doc src test: $(MAKE) -C $@ +test: src FORCE: diff --git a/test/Makefile.am b/test/Makefile.am index e78486e..633d8ae 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,5 +1,7 @@ # Unit test makefile # +.NOTPARALLEL: + noinst_PROGRAMS = $(GTESTS) CLEANFILES = file.c img_save-*.* --
