From: Sebastien Bourdeauducq Date: Mon, 6 Apr 2015 15:53:04 +0000 (+0800) Subject: make: add target in build names X-Git-Tag: 24jan2021_ls180~2393 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8b41ab3a5ffc06ca9145bce77b68bff043183b60;p=litex.git make: add target in build names --- diff --git a/make.py b/make.py index d417fa00..43e4d293 100755 --- a/make.py +++ b/make.py @@ -81,7 +81,7 @@ if __name__ == "__main__": if args.external: platform.soc_ext_path = os.path.abspath(args.external) - build_name = top_class.__name__.lower() + "-" + platform_name + build_name = args.target + "-" + top_class.__name__.lower() + "-" + platform_name top_kwargs = dict((k, autotype(v)) for k, v in args.target_option) soc = top_class(platform, **top_kwargs) soc.finalize()