Skip to content

Commit 44456c2

Browse files
committed
fix makefile template
1 parent f6554a1 commit 44456c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/EIDEProject.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1979,13 +1979,13 @@ COLOR_BLUE = "\\e[34;1m"
19791979
# all target
19801980
# --------------------------------------------
19811981
1982-
all: $(OUT_LIBS) | $(OUT_DIR)
1982+
all: $(OUT_DIR) $(OUT_LIBS)
19831983
\t@echo -e $(COLOR_DONE)"-------------------------"$(COLOR_END)
19841984
\t@echo -e $(COLOR_DONE)"all done"$(COLOR_END)
19851985
\t@echo -e $(COLOR_DONE)"-------------------------"$(COLOR_END)
19861986
19871987
$(OUT_DIR):
1988-
\t@mkdir -p $@
1988+
\tmkdir -p $@
19891989
`;
19901990

19911991
mk_tmp = mk_tmp

0 commit comments

Comments
 (0)