Add an 'accept-corrections' target

To copy over all the .corrected files
This commit is contained in:
Jeremie Dimino 2017-08-30 00:45:47 +01:00
parent aca4cd47d2
commit 059e0dab66
1 changed files with 6 additions and 0 deletions

View File

@ -52,4 +52,10 @@ update-jbuilds: $(BIN)
rm -f doc/jbuild
mv doc/jbuild.tmp doc/jbuild
accept-corrections:
for i in `find . -name \*.corrected`; do \
cp $$i $${i/.corrected}; \
done
.PHONY: default install uninstall reinstall clean test doc
.PHONY: accept-corrections