diff options
-rw-r--r-- | figs/anim_laser/Makefile | 12 | ||||
-rw-r--r-- | figs/animation/Makefile | 1 |
2 files changed, 12 insertions, 1 deletions
diff --git a/figs/anim_laser/Makefile b/figs/anim_laser/Makefile new file mode 100644 index 0000000..9b66e37 --- /dev/null +++ b/figs/anim_laser/Makefile @@ -0,0 +1,12 @@ +PROJECTNAME=animate + +all: animate.dat + +run: animate.dat + python3 animate.py animate.dat & + +animate.dat: + julia laser.jl > animate.dat + +clean: + rm -f animate.dat diff --git a/figs/animation/Makefile b/figs/animation/Makefile index 19696f8..d582a40 100644 --- a/figs/animation/Makefile +++ b/figs/animation/Makefile @@ -4,7 +4,6 @@ all: animate.dat run: animate.dat python3 animate.py animate.dat & - python3 animate-positive.py animate.dat & animate.dat: julia animate_compute.jl > animate.dat |