mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-19 08:29:45 +01:00
19 lines
294 B
Bash
Executable File
19 lines
294 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# make a copy of a waf directory with the same name
|
|
#
|
|
# the tool 'relocation' (waflib/extras) adds some information
|
|
# so that a full rebuild is not performed when the dir changes
|
|
|
|
rm -rf tmp
|
|
mkdir tmp
|
|
|
|
pushd c
|
|
waf configure build
|
|
popd
|
|
cp -R c tmp/c
|
|
|
|
cd tmp/c
|
|
waf configure build
|
|
|