From 0a91557bd56d1f55bf4d43190aed751f8d070c18 Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Tue, 26 Jan 2021 15:39:04 +0100 Subject: [PATCH] Fixed typo in comment --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9327402..a27d8fd 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Taken from: https://stackoverflow.com/questions/2214575/passing-arguments-to-make-run # If the first argument is "new"... ifeq (new,$(firstword $(MAKECMDGOALS))) - # use the rest as arguments for "run" + # use the rest as arguments for "new" NEW_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS)) # ...and turn them into do-nothing targets $(eval $(NEW_ARGS):;@:)