From 8afeaa18c5ce1efa8e62d191c03ea2adf2596c8f Mon Sep 17 00:00:00 2001 From: Dan Jones Date: Tue, 11 Jan 2022 15:59:41 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Remove=20current=20directory=20f?= =?UTF-8?q?rom=20include=20path=20in=20Makefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No longer needed since everything is in includes --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3b0a161..791c39d 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,10 @@ default: remontel.ulx remontel.z5 remontel.ulx: remontel.inf includes/*.inf lib/Parser.h lib/VerbLib.h lib/Grammar.h - inform -G +include_path=,includes,lib $< + inform -G +include_path=includes,lib $< remontel.z5: remontel.inf includes/*.inf lib/Parser.h lib/VerbLib.h lib/Grammar.h - inform +include_path=,includes,lib $< + inform +include_path=includes,lib $< lib/Parser.h lib/VerbLib.h lib/Grammar.h: $(MAKE) -C lib Parser.h