summaryrefslogtreecommitdiff
path: root/mk/tools.mk
blob: 9f3734e06ab80b33196aaa17fab6b196045f8cb6 (plain)
1
2
3
4
5
6
7
8
9
10
define find_tools_lazy
  $(call find_command_lazy,cocotb-config,COCOTB_CONFIG)
  $(call find_command_lazy,genhtml,GENHTML)
  $(call find_command_lazy,pkg-config,PKG_CONFIG)
  $(call find_command_lazy,verilator,VERILATOR)

  $(call shell_defer,cocotb_share,$$(COCOTB_CONFIG) --share)
  $(call shell_defer,cocotb_libdir,$$(COCOTB_CONFIG) --lib-dir)
  $(call shell_defer,cocotb_libpython,$$(COCOTB_CONFIG) --libpython)
endef