Running cd contracts/project1 && make build does not work due to the following issue:
cur_dir = $(dir $(abspath $(firstword $(MAKEFILE_LIST))))
CLANG := $(shell $(TOP)/scripts/find_clang)
This Makefile setup assumes that make is invoked from the workspace root, which breaks relative path resolution when run from a subdirectory.
Running
cd contracts/project1 && make builddoes not work due to the following issue:This Makefile setup assumes that make is invoked from the workspace root, which breaks relative path resolution when run from a subdirectory.