From: Hans-Bernhard B. <HBB...@t-...> - 2019-02-23 01:10:49
|
Am 22.02.2019 um 03:42 schrieb Tatsuro MATSUOKA: > Can I insert something like "pause" each run in make check? No need; there are already "pause"s after every plot (the same ones you see when just loading all.dem in an interactive gnuplot session). The "make check" rules explictly skip all these pauses by redirecting stdin from /dev/null. But for when one does want to single-step the plots, there's a second target, "check-interactive", that does just that. So, in a nutshell: make -C demo check-interactive |