4.2.5 Explicit DependenciesA target can be marked as depending on another file that Rscons would not
otherwise know about via the env.Program("a.out", "foo.c", "LDFLAGS" => %w[-T linker_script.ld]) env.depends("a.out", "linker_script.ld") You can pass multiple dependency files to env.depends("my_app", "config/link.ld", "README.txt", *glob("assets/**/*"))
|