gen_makefile: set 'clone' as dep for 'all', to always clone first

This commit is contained in:
Neels Hofmeyr 2017-08-22 17:31:35 +02:00
parent e274d351f5
commit 20e169f4b5
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ regen:
out.write('clone: \\\n\t' + ' \\\n\t'.join([ '.make.%s.clone' % p for p, d in projects_deps ]) + '\n\n')
# now the actual useful build rules
out.write('all: \\\n\t' + ' \\\n\t'.join([ '.make.%s.detect_edits .make.%s.install' % (p,p) for p, d in projects_deps ]) + '\n\n')
out.write('all: \\\n\tclone \\\n\t' + ' \\\n\t'.join([ '.make.%s.detect_edits .make.%s.install' % (p,p) for p, d in projects_deps ]) + '\n\n')
for proj, deps in projects_deps:
out.write(gen_make(proj, deps, configure_opts.get(proj), args.jobs,