$(MKDIR_P) $(VARDIR) >/dev/null 2>&1 || true # not fatal, so don't complain
$(tarball):
- rm -rf $(tarball) $(tarball_pfx)
- git archive --format=tar --prefix=$(tarball_pfx)/ HEAD \
+ $(Q) rm -rf $(tarball) $(tarball_pfx)
+ $(Q) git archive --format=tar --prefix=$(tarball_pfx)/ HEAD \
| tar --delete $(tarball_delete) > $(tarball_pfx).tar
- $(MKDIR_P) $(tarball_pfx)
- ./GIT-VERSION-GEN > $(tarball_pfx)/VERSION
- cp -r $(autocrap) $(tarball_pfx)
- tar rf $(tarball_pfx).tar $(tarball_pfx)/*
- bzip2 -9 $(tarball_pfx).tar
- ls -l $(tarball)
- rm -rf $(tarball_pfx)
+ $(Q) $(MKDIR_P) $(tarball_pfx)
+ $(Q) ./GIT-VERSION-GEN > $(tarball_pfx)/VERSION
+ $(Q) cp -r $(autocrap) $(tarball_pfx)
+ $(Q) tar rf $(tarball_pfx).tar $(tarball_pfx)/*
+ $(Q) bzip2 -9 $(tarball_pfx).tar
+ $(Q) ls -l $(tarball)
+ $(Q) rm -rf $(tarball_pfx)