You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sitc/Makefile

12 lines
317 B
Makefile

5 years ago
FOLDER:=.
5 years ago
ERROR:=255
5 years ago
exec:
5 years ago
find $(FOLDER) -iname '*.ipynb' -print0 | xargs -n 1 -0 sh -c 'jupyter nbconvert --execute --ClearOutputPreprocessor.enabled=True --inplace $$0 || exit $(ERROR)'
5 years ago
clean:
5 years ago
find $(FOLDER) -iname '*.ipynb' -print0 | xargs -n 1 -0 sh -c 'nbstripout $$0 || exit $(ERROR)'
5 years ago
.PHONY: exec clean