mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-01-21 13:28:25 -05:00
- Change the developer flow to not require updating the git-version repo that the builds used to download a git-version.h file. The Actions now do a full repo fetch so that the .h file can be generated via the git history. - Get rid of the gensend Makefile target that was used for the above. - Get rid of the pre-push git hook file that called "Make gensend". - Change the FreeBSD build to save an artifact with its built binaries. [buildall]
13 lines
462 B
Plaintext
13 lines
462 B
Plaintext
TARGETS := all install install-ssl-daemon install-all install-strip conf gen reconfigure restatus \
|
|
proto man clean cleantests distclean test check check29 check30 installcheck splint \
|
|
doxygen doxygen-upload finddead rrsync
|
|
|
|
.PHONY: $(TARGETS) auto-prep
|
|
|
|
$(TARGETS): auto-prep
|
|
make -C build $@
|
|
|
|
auto-prep:
|
|
@if test x`packaging/prep-auto-dir` = x; then echo "auto-build-save is not setup"; exit 1; fi
|
|
@echo 'Build branch: '`readlink build/.branch | tr % /`
|