makefile “no such file or directory”

Unless all of your directories (i.e., BIN_DIR, SRC_DIR) are in the root directory (/) then that is why you’re getting the error. You either want to remove the initial slash or you can use an environment variable prefix like SRC_DIR = $(MY_PROJECT_BASE_DIRECTORY)/src.

Leave a Comment