update Makefile + measures

This commit is contained in:
relikd
2021-10-03 19:45:04 +02:00
parent b82c8e8d7c
commit 31bf5f443a
3 changed files with 17 additions and 2 deletions

View File

@@ -91,3 +91,18 @@ find-links:
find */*.lr -exec grep --color=auto -i ".\.\./[^ ]*" -o {} + \
|| echo 'nothing found.'
@echo
find-yield:
@echo
@cd '$(PROJDIR)/content/recipes' && \
find */*.lr -exec grep "^yield: .*" -o {} \; \
| cut -d' ' -f 2- | tr -d '[0-9-.]' | sort -u \
|| echo 'nothing found.'
@echo
find-time:
@cd '$(PROJDIR)/content/recipes' && \
find */*.lr -exec grep "^time: .*" -o {} \; \
| cut -d' ' -f 2- | sort -n -u \
|| echo 'nothing found.'