1
0
mirror of https://github.com/gsi-upm/sitc synced 2025-03-12 09:06:58 +00:00
sitc/Makefile

11 lines
352 B
Makefile
Raw Normal View History

2019-03-06 12:02:49 +01:00
FOLDER:=.
exec:
find $(FOLDER) -iname '*.ipynb' -print0 | xargs -n 1 -0 sh -c 'jupyter nbconvert --execute --ClearOutputPreprocessor.enabled=True --inplace $$0 || exit 255'
clean:
find $(FOLDER) -iname '*.ipynb' -print0 | xargs -n 1 -0 sh -c 'jupyter nbconvert --ClearOutputPreprocessor.enabled=True --inplace $$0 || exit 255'
.PHONY: exec clean