[질문] Linux shell 문법중에.. if

김승훈의 이미지

공부중인 Makefile 에 내부 입니다.
전체 흐름이 이해가 안되네요.
다른곳에 찾아봐도 없네요.. 간단한건데 이해가 안되네요.. T_T

all : do-it-all

ifeq (.config, $(wildcard .config))
include .config
else
CONFIGURATION = config
do-it-all : config
endif
do-it-all: _start