mirror of
https://github.com/gsi-upm/sitc
synced 2024-11-17 12:02:28 +00:00
11 lines
352 B
Makefile
11 lines
352 B
Makefile
|
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
|