Try something like this ``` source_files := $(shell find path/to/src -name *.cpp) object_files := $(patsubst path/to/src/%.cpp, build/%.o, $(source_files)) ```