create_bindings() loads bindings from remake into the global environment
(.GlobalEnv). The resulting objects are "active
bindings" that when accessed will fetch an object.
You still need to use make() to update targets.
Conversely, delete_bindings() undoes this and deletes the
bindings that remake instantiated before.
create_bindings(remake_file = "remake.yml")delete_bindings(remake_file = "remake.yml")
Name of the remakefile to read. By default
"remake.yml".