ウォンツテック

そでやまのーと

.include

現在のmakefileの処理を中断してhogefileの処理を行う。
終了したら続きを処理する。
※またdot(.)が現れた。なんで二つの記法があるのか気になって
仕方ないのでちょっと調べてみたらBSD makeとGnu makeって2種類
あるみたいね。BSDの方が「.」ありで、Gnuが無しの模様。
BSD make

Makefile inclusion, conditional structures and for loops reminiscent of
the C programming language are provided in make. All such structures are identified by a line beginning with a single dot (`.') character. Whitespace characters may follow this dot, e.g.,

.include
and
. include

GNU make

The include directive tells make to suspend reading the current makefile and read one or more other makefiles before continuing. The directive is a line in the makefile that looks like this:

include filenames...