aboutsummaryrefslogtreecommitdiff
path: root/tcc.c
diff options
context:
space:
mode:
Diffstat (limited to 'tcc.c')
-rw-r--r--tcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcc.c b/tcc.c
index fbfbffa..cbef5d3 100644
--- a/tcc.c
+++ b/tcc.c
@@ -212,7 +212,7 @@ static void gen_makedeps(TCCState *s, const char *target, const char *filename)
if (!depout)
tcc_error("could not open '%s'", filename);
- fprintf(depout, "%s : \\\n", target);
+ fprintf(depout, "%s: \\\n", target);
for (i=0; i<s->nb_target_deps; ++i)
fprintf(depout, " %s \\\n", s->target_deps[i]);
fprintf(depout, "\n");