1
0
mirror of https://github.com/gsi-upm/sitc synced 2025-08-23 18:22:19 +00:00

Add Makefile

This commit is contained in:
J. Fernando Sánchez
2019-03-06 12:02:49 +01:00
parent 267421e5b8
commit d4b59e702d
2 changed files with 36 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
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