X-Git-Url: http://andersk.mit.edu/gitweb/libyaml.git/blobdiff_plain/e5aadc734909797f25057a795be0053669c80f1b..639981a546267ca32109b0138c1cd569ce33c39c:/Makefile.am diff --git a/Makefile.am b/Makefile.am index c63b274..c0cf7ce 100644 --- a/Makefile.am +++ b/Makefile.am @@ -9,11 +9,12 @@ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = yaml-0.1.pc maintainer-clean-local: - -rm -f aclocal.m4 config.h.in configure config/* + rm -f aclocal.m4 config.h.in configure config/* -find ${builddir} -name Makefile.in -exec rm -f '{}' ';' distclean-local: - -make -C tests/run-test-suite clean + rm -fr tests/run-test-suite + -git worktree prune .PHONY: bootstrap bootstrap: maintainer-clean @@ -24,7 +25,12 @@ bootstrap: maintainer-clean test: all make -C tests check-TESTS -test-suite: - make -C tests/run-test-suite test +test-suite: tests/run-test-suite + make -C $< test test-all: test test-suite + +tests/run-test-suite: + -git branch --track run-test-suite origin/run-test-suite + -git worktree prune + git worktree add $@ run-test-suite