diff --git a/examples/make.py b/examples/make.py index 40da5721455880d48e559995ce51e7f9875c29cb..b2623feab999a5556bb1605d39d473e3533c7cca 100644 --- a/examples/make.py +++ b/examples/make.py @@ -4,7 +4,7 @@ for c_file in glob.glob(script_path + "/*/*.c", recursive=False): print("compiling", c_file) args = [ "gcc", # compiler - "-std=c11" # C11 mode + "-std=c11", # C11 mode "-L", # lib path flag "./", # where to look for libs "-lreowolf_rs", # add lib called "reowolf_rs"