Original Post
How can I include found files in makefile? Currently I'm having in my makefile: include "makefile1.mk" include "makefile2.mk" include "makefile3.mk" But I want to rewrite this in the following way: include
find *.mk But it doesn't work. Is it possible, anybody knows how?