Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
# - make # Automatically build an html local version
# - make todo # To list remaining tasks
# - make verifs # To check for correctness: wrapping, spelling
# - make powrap # To check for wrapping
# - make pospell # To check for spelling
# - make wrap # To check for wrapping
# - make spell # To check for spelling
# - make merge # To merge pot from upstream
# - make fuzzy # To find fuzzy strings
# - make progress # To compute current progression
Expand Down Expand Up @@ -80,14 +80,14 @@ todo: $(VENV)/bin/potodo
$(VENV)/bin/potodo

.PHONY: verifs
verifs: powrap pospell
verifs: wrap spell

.PHONY: powrap
powrap: $(VENV)/bin/powrap
.PHONY: wrap
wrap: $(VENV)/bin/powrap
$(VENV)/bin/powrap --check --quiet *.po **/*.po

.PHONY: pospell
pospell: $(VENV)/bin/pospell
.PHONY: spell
spell: $(VENV)/bin/pospell
$(VENV)/bin/pospell -p dict -l fr_FR *.po **/*.po

.PHONY: merge
Expand Down