1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

Merge pull request #491 from ebfe/wipe_tmp

make: wipe $(TEMPDIR) before running tests
This commit is contained in:
Alex Lyon 2015-01-09 16:38:19 -08:00
commit 27a15a7f8b

View file

@ -256,6 +256,7 @@ $(BUILDDIR):
mkdir -p $(BUILDDIR)/gen
$(TEMPDIR):
$(RM) -rf $(TEMPDIR)
mkdir $(TEMPDIR)
install: $(addprefix $(BUILDDIR)/,$(INSTALLEES))
@ -300,4 +301,4 @@ busytest: $(BUILDDIR)/busybox $(BUILDDIR)/.config
(cd $(BUSYBOX_SRC)/testsuite && bindir=$(BUILDDIR) ./runtest $(RUNTEST_ARGS))
endif
.PHONY: all deps test clean busytest install uninstall
.PHONY: $(TEMPDIR) all deps test clean busytest install uninstall