Skip to content

Commit 88507c3

Browse files
committed
fix: Fix syntax error in backend_codegen.py Makefile generation
1 parent 615b121 commit 88507c3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

backend_codegen.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,8 +339,8 @@ def generate(self, ir_graph: Any, target_config: Dict[str, Any]) -> List[str]:
339339
"CFLAGS ?= -O3 -std=c11 -Wall -Wextra -Wno-unused-parameter",
340340
"LDFLAGS ?=",
341341
"SRC := edge_model.c main.c",
342-
"OBJ := $(SRC:.c=.o)
343-
TARGET := edge_model_demo",
342+
"OBJ := $(SRC:.c=.o)",
343+
"TARGET := edge_model_demo",
344344
"all: $(TARGET)",
345345
"$(TARGET): $(OBJ)",
346346
"\t$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)",

0 commit comments

Comments
 (0)