From e0871e124fbff4106f81b0a90f9bd5b7bbbc80aa Mon Sep 17 00:00:00 2001 From: mesheets <16882600+mesheets@users.noreply.github.com> Date: Mon, 10 Jun 2024 08:36:29 -0400 Subject: [PATCH] Fix inadvertently-deleted dot in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0027d59..4720ab8 100755 --- a/Makefile +++ b/Makefile @@ -178,7 +178,7 @@ COBJS = AsmStmt AssignStmt BlockStmt Bytecode Conditional \ TaskIdExpr RelExpr LogicalExpr NegateExpr IndirectExpr \ NodeExpr ShiftExpr TernaryExpr VarAllocator VarTranslator \ Resource AddrOfExpr DerefExpr GosubParamStmt -COBJ = $(addprefix compiler/, $(addsuffix $(OBJ_EXT), $(COBJS))) +COBJ = $(addprefix compiler/, $(addsuffix .$(OBJ_EXT), $(COBJS))) NQCOBJS = nqc SRecord DirList CmdLine NQCOBJ = $(addprefix nqc/, $(addsuffix .$(OBJ_EXT), $(NQCOBJS)))