Automatic variable $@ make
$@ expands to the current target name in a recipe
build:
docker build -t $(IMAGE) . && echo 'Built $@'
more make
all 10 commands →
$@ expands to the current target name in a recipe
build:
docker build -t $(IMAGE) . && echo 'Built $@'