mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-03-28 03:02:47 -04:00
The release script & the patch management script now require the use of an auto-build-save dir that makes it much easier to keep the generated files from melding together, and remembers the configure setup for each patch branch.
9 lines
362 B
Plaintext
9 lines
362 B
Plaintext
TARGETS := all install install-ssl-daemon install-all install-strip conf gen gensend reconfigure restatus \
|
|
proto man clean cleantests distclean test check check29 check30 installcheck splint doxygen doxygen-upload
|
|
|
|
.PHONY: $(TARGETS)
|
|
|
|
$(TARGETS):
|
|
@if test x`packaging/prep-auto-dir` = x; then echo "auto-build-save is not setup"; exit 1; fi
|
|
make -C build $@
|