make powrap/pospell -> make wrap/make spell (#1019)

This commit is contained in:
Mathieu Dupuy 2019-12-04 22:08:12 +01:00 committed by Julien Palard
parent b15fa3e92d
commit 644eb8f9fc

View File

@ -5,8 +5,8 @@
# - make # Automatically build an html local version # - make # Automatically build an html local version
# - make todo # To list remaining tasks # - make todo # To list remaining tasks
# - make verifs # To check for correctness: wrapping, spelling # - make verifs # To check for correctness: wrapping, spelling
# - make powrap # To check for wrapping # - make wrap # To check for wrapping
# - make pospell # To check for spelling # - make spell # To check for spelling
# - make merge # To merge pot from upstream # - make merge # To merge pot from upstream
# - make fuzzy # To find fuzzy strings # - make fuzzy # To find fuzzy strings
# - make progress # To compute current progression # - make progress # To compute current progression
@ -80,14 +80,14 @@ todo: $(VENV)/bin/potodo
$(VENV)/bin/potodo $(VENV)/bin/potodo
.PHONY: verifs .PHONY: verifs
verifs: powrap pospell verifs: wrap spell
.PHONY: powrap .PHONY: wrap
powrap: $(VENV)/bin/powrap wrap: $(VENV)/bin/powrap
$(VENV)/bin/powrap --check --quiet *.po **/*.po $(VENV)/bin/powrap --check --quiet *.po **/*.po
.PHONY: pospell .PHONY: spell
pospell: $(VENV)/bin/pospell spell: $(VENV)/bin/pospell
$(VENV)/bin/pospell -p dict -l fr_FR *.po **/*.po $(VENV)/bin/pospell -p dict -l fr_FR *.po **/*.po
.PHONY: merge .PHONY: merge