1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
|
From: Georges Khaznadar <georgesk@debian.org>
Date: Fri, 3 Oct 2025 23:28:13 +0200
Subject: Makefile
===================================================================
---
Makefile | 106 ++++++++++++++++-------------------------
bin/Makefile | 10 ++--
eyes17/helpFiles/Makefile | 25 ++--------
eyes17/helpFiles/Makefile-lang | 91 -----------------------------------
eyes17/lang/Makefile | 5 +-
microhope/Makefile | 5 +-
6 files changed, 56 insertions(+), 186 deletions(-)
diff --git a/Makefile b/Makefile
index 62b9e9d..d573dee 100644
--- a/Makefile
+++ b/Makefile
@@ -1,18 +1,10 @@
DESTDIR =
-EYES17_ONLY = $(shell ls build_eyes17_only 2>/dev/null)
SUBDIRS = po clib/expeyes-clib
-ifeq ($(EYES17_ONLY), build_eyes17_only)
- SUBDIRS =
-endif
-
SUBDIRS_INDEP = expeyes-web \
microhope microhope/po microhope/microhope-doc \
- eyes17 eyes17/lang eyes17/layouts eyes17/helpFiles \
+ eyes17/lang eyes17 eyes17/layouts eyes17/helpFiles \
eyesjunior/lang eyesjunior/layouts eyesjunior/helpFiles \
bin
-ifeq ($(EYES17_ONLY), build_eyes17_only)
- SUBDIRS_INDEP = eyes17 eyes17/lang eyes17/layouts eyes17/helpFiles
-endif
LANGS = ${wildcard eyes17/helpFiles| grep '^..$$'}
THIS_DIR = ${shell pwd}
@@ -38,11 +30,9 @@ all_indep:
done
all_firmware:
- if [ -z "$(EYES17_ONLY)" ]; then \
- for d in firmware kuttyPy/firmware microhope/firmware; do \
- $(MAKE) -C $$d all; \
- done; \
- fi
+ for d in firmware kuttyPy/firmware microhope/firmware; do \
+ $(MAKE) -C $$d all; \
+ done
clean_firmware: clean
# clean the bootloader hex file
@@ -60,30 +50,32 @@ install_arch: all_arch
fi
install -d $(DESTDIR)/lib/udev/rules.d/
install -m 644 99-phoenix.rules $(DESTDIR)/lib/udev/rules.d/
- ## for expeyes
- #install -d $(DESTDIR)/usr/share/expeyes
- #cp -a eyes $(DESTDIR)/usr/share/expeyes
- ## icons
+ # for expeyes
+ install -d $(DESTDIR)/usr/share/expeyes
+ cp -a eyes $(DESTDIR)/usr/share/expeyes
+ # icons
install -d $(DESTDIR)/usr/share/icons
- #install -m 644 pixmaps/expeyes-logo.png \
- # $(DESTDIR)/usr/share/icons/expeyes.png
- #install -m 644 pixmaps/expeyes-junior-icon.png \
- # $(DESTDIR)/usr/share/icons
+ install -m 644 pixmaps/expeyes-logo.png \
+ $(DESTDIR)/usr/share/icons/expeyes.png
+ install -m 644 pixmaps/expeyes-junior-icon.png \
+ $(DESTDIR)/usr/share/icons
install -m 644 pixmaps/eyes17-logo.png \
$(DESTDIR)/usr/share/icons
- #install -m 644 pixmaps/expeyes-progman-jr-doc.png \
- # $(DESTDIR)/usr/share/icons
- #install -m 644 pixmaps/expeyes-progman-jr-doc.svg \
- # $(DESTDIR)/usr/share/icons
- #install -m 644 pixmaps/nuclear-icon.png \
- # $(DESTDIR)/usr/share/icons
- ## desktop files
+ install -m 644 pixmaps/expeyes-progman-jr-doc.png \
+ $(DESTDIR)/usr/share/icons
+ install -m 644 pixmaps/expeyes-progman-jr-doc.svg \
+ $(DESTDIR)/usr/share/icons
+ install -m 644 pixmaps/nuclear-icon.png \
+ $(DESTDIR)/usr/share/icons
+ install -m 644 pixmaps/eyes17-manuals.png \
+ $(DESTDIR)/usr/share/icons
+ # desktop files
install -d $(DESTDIR)/usr/share/applications
- #install -m 644 desktop/expeyes.desktop \
- # desktop/expeyes-junior.desktop desktop/Phoenix-ASM.desktop
- install -m644 desktop/expeyes-17.desktop \
+ install -m 644 desktop/expeyes.desktop \
+ desktop/expeyes-junior.desktop desktop/Phoenix-ASM.desktop \
+ desktop/expeyes-17.desktop \
$(DESTDIR)/usr/share/applications
- #$(MAKE) -C po install DESTDIR=$(DESTDIR)
+ $(MAKE) -C po install DESTDIR=$(DESTDIR)
# for expeyes-doc-common
install -d $(DESTDIR)/usr/share/icons
# install -m 644 pixmaps/*doc.png $(DESTDIR)/usr/share/icons
@@ -93,50 +85,35 @@ install_arch: all_arch
for d in $(SUBDIRS); do \
[ ! -f $$d/Makefile ] || $(MAKE) -C $$d install DESTDIR=$(DESTDIR); \
done
- ## fix permissions in /usr/share/expeyes
- #find $(DESTDIR)/usr/share/expeyes -type f -exec chmod 644 {} \;
- ## for expeyes-clib
- #rm -f $(DESTDIR)/usr/share/expeyes/clib
- #ln -s /usr/lib/expeyes $(DESTDIR)/usr/share/expeyes/clib
-
-DOCDIR_17 = $(DESTDIR)/usr/share/eyes17/doc
-DEBIAN_DOCDIR = $(DESTDIR)/usr/share/doc/eyes17
+ # fix permissions in /usr/share/expeyes
+ find $(DESTDIR)/usr/share/expeyes -type f -exec chmod 644 {} \;
+ # for expeyes-clib
+ rm -f $(DESTDIR)/usr/share/expeyes/clib
+ ln -s /usr/lib/expeyes $(DESTDIR)/usr/share/expeyes/clib
install_indep: all_indep
for d in $(SUBDIRS_INDEP); do \
[ ! -f $$d/Makefile ] || $(MAKE) -C $$d install DESTDIR=$(DESTDIR); \
done
- # copy eyes17 docs' locations expEYES-17.{pdf|epub} to eyes17.{pdf|epub}
- mkdir -p $(DOCDIR_17)
- for lang in en fr es ml; do \
- mkdir -p $(DEBIAN_DOCDIR)/$${lang}; \
- ln -s ../../doc/eyes17/$${lang} $(DOCDIR_17); \
- install -m 644 \
- eyes17/helpFiles/$${lang}/build/latex/expEYES-17.pdf \
- $(DEBIAN_DOCDIR)/$${lang}/eyes17.pdf; \
- install -m 644 \
- eyes17/helpFiles/$${lang}/build/epub/expEYES-17.epub \
- $(DEBIAN_DOCDIR)/$${lang}/eyes17.epub; \
- done
# fix a few permission
find $(DESTDIR) -name "*.pdf" -exec chmod -x {} \;
- ## PO files for expeyes
- #make -C po install DESTDIR=$(DESTDIR)
- ## PO files for microhope
- #make -C microhope/po install DESTDIR=$(DESTDIR)
- ## files from eyesjunior
- #mkdir -p $(DESTDIR)/usr/share/eyesj
- #cp -a eyesjunior/* $(DESTDIR)/usr/share/eyesj
-
+ # PO files for expeyes
+ make -C po install DESTDIR=$(DESTDIR)
+ # PO files for microhope
+ make -C microhope/po install DESTDIR=$(DESTDIR)
+ # files from eyesjunior
+ mkdir -p $(DESTDIR)/usr/share/eyesj
+ cp -a eyesjunior/* $(DESTDIR)/usr/share/eyesj
# files from eyes17
mkdir -p $(DESTDIR)/usr/share/eyes17
for f in eyes17/server*.html eyes17/*.py ; do \
cp $$f $(DESTDIR)/usr/share/eyes17; \
done
- for d in code examples eyes17 html images lang layouts blockly screenshots; do \
+ #for d in code examples eyes17 html images lang layouts blockly screenshots; do
+ for d in code examples eyes17 html images lang layouts screenshots; do \
cp -a eyes17/$$d $(DESTDIR)/usr/share/eyes17; \
done
- # help files for eyes17s help popup
+ # help files for eyes17's help popup
mkdir -p $(DESTDIR)/usr/share/eyes17/helpFiles
for d in pics schematics; do \
cp -a eyes17/helpFiles/$$d $(DESTDIR)/usr/share/eyes17/helpFiles; \
@@ -163,8 +140,7 @@ install_indep: all_indep
clean:
rm -rf *~ *.pyc build/ eyes/*~ eyes/*.pyc eyes-junior/*~ eyes-junior/*.pyc doc/fr/Docs/eyes.out
for d in $(SUBDIRS) $(SUBDIRS_INDEP); do \
- [ ! -f $$d/Makefile ] || $(MAKE) -C $$d distclean || \
- $(MAKE) -C $$d clean EYES17_ONLY=$(EYES17_ONLY); \
+ [ ! -f $$d/Makefile ] || $(MAKE) -C $$d distclean || $(MAKE) -C $$d clean; \
done
[ ! -d clib ] || (cd clib/expeyes-clib && sh clean-all.sh)
# fix compiles Python files created by the clean scripts above
diff --git a/bin/Makefile b/bin/Makefile
index f09562c..5da5d51 100644
--- a/bin/Makefile
+++ b/bin/Makefile
@@ -2,7 +2,7 @@ DESTDIR=
DB2MAN = /usr/share/sgml/docbook/stylesheet/xsl/docbook-xsl/manpages/docbook.xsl
XP = xsltproc --nonet --param man.charmap.use.subset "0"
-all: expeyes.1 expeyes-junior.1 eyes17.1 eyes17-doc.1 \
+all: expeyes.1 expeyes-junior.1 eyes17.1 eyes17-manuals.1 \
expeyes-doc.1 expeyes-progman-jr-doc.1
expeyes.1: expeyes-man.xml
@@ -14,7 +14,7 @@ expeyes-junior.1: expeyes-junior-man.xml
eyes17.1: eyes17-man.xml
$(XP) $(DB2MAN) $<
-eyes17-doc.1: eyes17-doc-man.xml
+eyes17-manuals.1: eyes17-manuals-man.xml
$(XP) $(DB2MAN) $<
expeyes-doc.1: expeyes-doc.xml
@@ -30,8 +30,8 @@ install:
install -d $(DESTDIR)/usr/share/man/man1
gzip -c9 expeyes.1 > $(DESTDIR)/usr/share/man/man1/expeyes.1.gz
gzip -c9 expeyes-junior.1 > $(DESTDIR)/usr/share/man/man1/expeyes-junior.1.gz
- gzip -c9 eyes17.1 > $(DESTDIR)/usr/share/man/man1/eyes17.1.gz
- gzip -c9 eyes17-doc.1 > $(DESTDIR)/usr/share/man/man1/eyes17-doc.1.gz
+ # gzip -c9 eyes17.1 > $(DESTDIR)/usr/share/man/man1/eyes17.1.gz
+ # gzip -c9 eyes17-manuals.1 > $(DESTDIR)/usr/share/man/man1/eyes17-manuals.1.gz
gzip -c9 expeyes-doc.1 > $(DESTDIR)/usr/share/man/man1/expeyes-doc.1.gz
rm -f $(DESTDIR)/usr/share/man/man1/expeyes-junior-doc.1.gz
ln -s expeyes-doc.1.gz $(DESTDIR)/usr/share/man/man1/expeyes-junior-doc.1.gz
@@ -40,7 +40,7 @@ install:
install -m 755 expeyes $(DESTDIR)/usr/bin
install -m 755 expeyes-junior $(DESTDIR)/usr/bin
install -m 755 eyes17 $(DESTDIR)/usr/bin
- install -m 755 eyes17-doc $(DESTDIR)/usr/bin
+ install -m 755 eyes17-manuals $(DESTDIR)/usr/bin
install -m 755 expeyes-doc $(DESTDIR)/usr/bin
install -m 755 expeyes-progman-jr-doc $(DESTDIR)/usr/bin
rm -f $(DESTDIR)/usr/bin/expeyes-junior-doc
diff --git a/eyes17/helpFiles/Makefile b/eyes17/helpFiles/Makefile
index 30e558d..5753aec 100644
--- a/eyes17/helpFiles/Makefile
+++ b/eyes17/helpFiles/Makefile
@@ -1,11 +1,8 @@
DESTDIR =
-LANGUAGES_WITH_MANUAL = en es fr ml
+
LANGUAGES = $(shell find . -mindepth 1 -maxdepth 1 -type d | grep -Ev "pics|schematics|xcircuit|cache")
LANGUAGES_HTMLDONE = $(patsubst %, %/html-done, $(LANGUAGES))
-LANGUAGES_PDFDONE = $(patsubst %, %/pdf-done, $(LANGUAGES_WITH_MANUAL))
-LANGUAGES_EPUBDONE = $(patsubst %, %/epub-done, $(LANGUAGES_WITH_MANUAL))
-
# try to take a timestamp from ../../debian/changelog and if that fails
# replace by 1584377500, which is near 2020-1016 17:00 UTC
export SOURCE_DATE_EPOCH = $(shell dpkg-parsechangelog -l ../../debian/changelog -STimestamp 2>/dev/null || echo 1584377500)
@@ -22,26 +19,10 @@ fixTheLinks:
$(MAKE) -C $$l all; \
date > $@
-userManual: $(LANGUAGES_PDFDONE) $(LANGUAGES_EPUBDONE)
-
-%/pdf-done: $(wildcard %/_sources/*.rst)
- l=$$(dirname $@); \
- echo "====| RST => PDF for language $$l |===="; \
- $(MAKE) -C $$l latexpdf; \
- date > $@
-
-%/epub-done: $(wildcard %/_sources/*.rst)
- l=$$(dirname $@); \
- echo "====| RST => EPUB for language $$l |===="; \
- $(MAKE) -C $$l epub; \
- date > $@
-
-
clean:
- rm -f $(LANGUAGES_PDFDONE) $(LANGUAGES_EPUBDONE)
rm -rf cache/
for l in $(LANGUAGES); do \
- rm -f $$l/pdf-done $$l/html-done $$l/epub-done; \
+ rm -f $$l/html-done; \
rm -rf $$l/_sources/__pycache__; \
$(MAKE) -C $$l clean; \
done
@@ -49,5 +30,7 @@ clean:
install: all
mkdir -p $(DESTDIR)/usr/share/eyes17/helpFiles
cp -a $(LANGUAGES) pics schematics $(DESTDIR)/usr/share/eyes17/helpFiles
+ # *-done files contain datetime strings, so they must not be installed
+ find $(DESTDIR)/usr/share/eyes17/helpFiles -name "*-done" | xargs rm -f
.PHONY: all clean install userManual fixTheLinks
diff --git a/eyes17/helpFiles/Makefile-lang b/eyes17/helpFiles/Makefile-lang
index 76e9564..0a484af 100644
--- a/eyes17/helpFiles/Makefile-lang
+++ b/eyes17/helpFiles/Makefile-lang
@@ -5,7 +5,6 @@
RSTSOURCES = $(wildcard _sources/*.rst)
SOURCES_ = $(shell ls _sources/*.rst | grep -v index.rst | sed 's%_sources/%%')
HTML_FILES = $(patsubst %.rst, %.html, $(SOURCES_))
-TARGET = $(shell cd _sources && python3 -c 'import conf; print(conf.project)')
all: $(HTML_FILES)
@echo
@@ -14,99 +13,9 @@ all: $(HTML_FILES)
@echo -n "$@ "
@rst2html $< $@
-###### That part is for the User Manual #######################################
-
-# Minimal makefile for Sphinx documentation
-#
-
-# You can set these variables from the command line.
-SPHINXOPTS =
-SPHINXBUILD = sphinx-build
-SOURCEDIR = _sources
-SOURCES = $(wildcard $(SOURCEDIR)/*.rst)
-BUILDDIR = build
-
-PAPER = a4
-
-# Internal variables.
-PAPEROPT_a4 = -D latex_paper_size=a4
-PAPEROPT_letter = -D latex_paper_size=letter
-ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(SPHINXOPTS)
-# the i18n builder cannot share the environment and doctrees with the others
-I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
-
-
-# Put it first so that "make" without argument is like "make help".
-help:
- @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
-
-.PHONY: help Makefile
-
-.PHONY: latexpdf real_latexpdf
-
-# for languages without correct LaTeX babel, change this dependency
-# so latexpdf will not be called
-latexpdf:
- @if [ -f NoLaTeX ]; then \
- printf "+----------------------------------+\n| No LaTeX build since it is not |\n| well supported for this language |\n+----------------------------------+\n"; \
- else \
- $(MAKE) real_latexpdf; \
- fi
-
-real_latexpdf: build/latex/$(TARGET).pdf
-
-build/latex/$(TARGET).pdf : cover/coverpage.pdf cover/preface.pdf $(RSTSOURCES)
- @echo making the tempory file \"index.latex.rst\"
- @sed 's/:maxdepth: 1/:maxdepth: 2/' _sources/index.rst > \
- _sources/index.latex.rst
- $(SPHINXBUILD) -b latex "$(SOURCEDIR)" $(ALLSPHINXOPTS) $(BUILDDIR)/latex
- @echo copying a few files
- cp cover/*.pdf $(BUILDDIR)/latex
- @echo modifying the title page
- cd $(BUILDDIR)/latex; \
- cp expEYES-17.tex expEYES-17.tex.orig; \
- sed -i '/\\usepackage{sphinx}.*/r ../../include.tex' expEYES-17.tex; \
- sed -i 's/\\sphinxmaketitle/\\includepdf{coverpage.pdf}\n\\includepdf{preface.pdf}/' expEYES-17.tex;
- @echo launching prettyLaTeX.py
- python3 prettyLaTeX.py $(BUILDDIR)/latex expEYES-17.tex
- @echo generating PDF images in the LaTeX directory
- rm -f $(BUILDDIR)/latex/Makefile-images
- ln -s ../../../Makefile-images $(BUILDDIR)/latex
- $(MAKE) -C $(BUILDDIR)/latex -f Makefile-images
- @echo "Running LaTeX files through xelatex..."
- $(MAKE) -C $(BUILDDIR)/latex all-pdf PDFLATEX="latexmk -xelatex -silent -f -dvi- -ps-" || cat $(BUILDDIR)/latex/expEYES-17.log
- @echo "xelatex finished; the PDF files are in $(BUILDDIR)/latex."
- @echo removing the tempory file \"index.latex.rst\"
- @rm -f _sources/index.latex.rst
-
-.PHONY: epub
-epub: build/epub/$(TARGET).epub
-
-build/epub/$(TARGET).epub: $(RSTSOURCES)
- $(SPHINXBUILD) -b epub "$(SOURCEDIR)" $(ALLSPHINXOPTS) $(BUILDDIR)/epub
- fname=$$(basename $$(ls $(BUILDDIR)/epub/*.epub)| sed 's/.epub//'); \
- if [ -n "$$fname" ]; then \
- gm convert -density 300x300 $(BUILDDIR)/../cover/coverpage.pdf \
- $(BUILDDIR)/epub/coverpage.jpg; \
- ebook-polish --cover $(BUILDDIR)/epub/coverpage.jpg \
- $(BUILDDIR)/epub/$$fname.epub && \
- mv $(BUILDDIR)/epub/$${fname}_polished.epub \
- $(BUILDDIR)/epub/$$fname.epub; \
- echo; \
- echo "Build finished. The epub file is in $(BUILDDIR)/epub."; \
- fi
-
.PHONY: clean
clean:
- find $(BUILDDIR)/epub -mindepth 1 -maxdepth 1 | grep -v expEYES-17 | \
- xargs rm -rf
- find $(BUILDDIR)/latex -mindepth 1 -maxdepth 1 | grep -v expEYES-17.pdf | \
- xargs rm -rf
- cd cover; rm -f *.aux *.log *~
rm -rf $(BUILDDIR)/doctrees
if [ -z "$(EYES17_ONLY)" ]; then rm -f *.html; fi
-.PHONY: distclean
-distclean: clean
- cd cover; rm -f *.pdf
diff --git a/eyes17/lang/Makefile b/eyes17/lang/Makefile
index 70eca57..72beb07 100644
--- a/eyes17/lang/Makefile
+++ b/eyes17/lang/Makefile
@@ -5,16 +5,17 @@ SOURCES = $(wildcard ../*py ../code/*.py)
FORMS = $(wildcard ../layouts/*.ui)
# pylupdate6 cannot tale a .pro file
PYLUPDATE ?= pylupdate5
+LRELEASE = /usr/lib/qt5/bin/lrelease-pro
export LANG=C
all: $(QM_FILES)
$(QM_FILES): $(TS_FILES)
- lrelease -qt5 eyes17.pro > lrelease.log
+ $(LRELEASE) eyes17.pro > lrelease.log
python3 makeStats.py lrelease.log
$(TS_FILES): eyes17.pro
- LANG=en_US.UTF-8 $(PYLUPDATE) eyes17.pro
+ LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 $(PYLUPDATE) eyes17.pro
eyes17.pro: $(SOURCES)
@echo "# GENERATED FILE, DO NOT EDIT" > $@
diff --git a/microhope/Makefile b/microhope/Makefile
index 87fc393..155f194 100644
--- a/microhope/Makefile
+++ b/microhope/Makefile
@@ -2,7 +2,7 @@ DESTDIR =
TGZFILE = /tmp/microhope.tgz
all:
- $(MAKE) -C uhope/po all
+ $(MAKE) -C po all
install: all
# install the main command to launch microhope
@@ -10,7 +10,7 @@ install: all
install -m 755 microhope.py $(DESTDIR)/usr/bin
mv $(DESTDIR)/usr/bin/microhope.py $(DESTDIR)/usr/bin/microhope
# install the localization
- $(MAKE) -C uhope/po install DESTDIR=$(DESTDIR)
+ $(MAKE) -C po install DESTDIR=$(DESTDIR)
# install the pixmaps
install -d $(DESTDIR)/usr/share/microhope/pixmaps
install -m 644 pixmaps/* $(DESTDIR)/usr/share/microhope/pixmaps
@@ -27,6 +27,7 @@ uninstall:
clean:
rm -f *.o *~ *.pyc uhope/*~
+ rm -f po/*.mo
find . -name "__pycache__" | xargs rm -rf
archive:
|