From 2327204ec186db5f0a1fbe8768047a075f2bceea Mon Sep 17 00:00:00 2001 From: Dan Jones Date: Mon, 10 Jan 2022 11:05:59 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=E2=99=BB=EF=B8=8F=20Use=20variable?= =?UTF-8?q?=20names=20in=20Makefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 0996171..be51cac 100644 --- a/Makefile +++ b/Makefile @@ -2,11 +2,11 @@ default: remontel.ulx remontel.z5 -remontel.ulx: *.inf lib/Parser.h lib/VerbLib.h lib/Grammar.h - inform -G +include_path=,lib remontel.inf +remontel.ulx: remontel.inf *.inf lib/Parser.h lib/VerbLib.h lib/Grammar.h + inform -G +include_path=,lib $< -remontel.z5: *.inf lib/Parser.h lib/VerbLib.h lib/Grammar.h - inform +include_path=,lib remontel.inf +remontel.z5: remontel.inf *.inf lib/Parser.h lib/VerbLib.h lib/Grammar.h + inform +include_path=,lib $< lib/Parser.h lib/VerbLib.h lib/Grammar.h: $(MAKE) -C lib Parser.h