File: justfile

package info (click to toggle)
python-dmsh 0.2.19-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 480 kB
  • sloc: python: 1,893; makefile: 5
file content (9 lines) | stat: -rw-r--r-- 204 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
default:
	@echo `just png`?

png:
	for file in test_*.py; do \
	  python3 $$file; \
	done
	for file in *.png; do convert $$file -trim -resize x200 $$file; done
	for file in *.png; do optipng $$file; done