diff --git a/examples/make.py b/examples/make.py index a5dd5efc28901f165836dd7871b1ed347e9a563e..7f208d92df6dc51097c91f70a9eaa970741cc429 100644 --- a/examples/make.py +++ b/examples/make.py @@ -1,4 +1,4 @@ -import os, glob, subprocess +import os, glob, subprocess, time script_path = os.path.dirname(os.path.realpath(__file__)); for c_file in glob.glob(script_path + "/*/*.c", recursive=False): print("compiling", c_file) @@ -12,4 +12,5 @@ for c_file in glob.glob(script_path + "/*/*.c", recursive=False): "-o", # output flag c_file[:-2] # output filename ]; - subprocess.run(args); + subprocess.run(args) +input("Blocking until newline...");