diff options
author | Ian Jauslin <jauslin@ias.edu> | 2019-05-14 11:16:36 -0400 |
---|---|---|
committer | Ian Jauslin <jauslin@ias.edu> | 2019-05-14 11:16:36 -0400 |
commit | 1b55e19013ae989629aa662b5fe15636e08fec5d (patch) | |
tree | 8dc5d60866d5899f3e5183c7d7d2b1dfa9fdc07d | |
parent | d0c870377cc4e0388a343a6297f7ec5fa54adf16 (diff) |
-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 |