Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: wrap_make

Issue 29537638: Issue 6226 - Use mesonbuild as a build system (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Patch Set: Fix more build issues, cross compile. Created March 27, 2018, 8:55 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « meson.build ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/sh
2
3
4 outdir="v8/out/Debug"
5
6 # the arguments are
7 # [file1, ...] [-D outdir] -C dir ...
8 #
9 # -D is the output directory to copy from
10 # the rest is passed verbatim to make.
11 while [ "$1" != "-D" -a "$1" != "-C" ] ; do
12 target="$target $1"
13 shift
14 done
15 if [ "$1" = "-D" ] ; then
16 shift
17 outdir="$1"
18 shift
19 fi
20
21 make $* && for t in $target ; do
22 cp $outdir/$t .
23 done
OLDNEW
« no previous file with comments | « meson.build ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld