Skip to content

Commit

Permalink
Fix inadvertently-deleted dot in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mesheets committed Jun 10, 2024
1 parent 7eb189b commit e0871e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down

0 comments on commit e0871e1

Please sign in to comment.