blob: b0cd8304ee1404939e0a6ed1b38d9f0a94251d97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# file : libbutl/buildfile
# license : MIT; see accompanying LICENSE file
import libs = libbutl%lib{butl}
./: bash{$path.base($path.base(*.bash.in))}
bash{utility}: in{utility}
bash{manifest-parser}: in{manifest-parser} bash{utility}
bash{manifest-parser}: exe{manifest}: install = true
bash{manifest-serializer}: in{manifest-serializer} bash{utility}
bash{manifest-serializer}: exe{manifest}: install = true
bash{standard-version}: in{standard-version} bash{utility}
bash{standard-version}: exe{standard-version}: install = true
exe{manifest}: cxx{manifest} $libs
exe{standard-version}: cxx{standard-version} $libs
# Install our binding support executables next to the modules.
#
exe{*}: install = bin/libbutl.bash/
|