ClickHouse/utils/generate-ya-make/generate-ya-make.sh

13 lines
562 B
Bash
Raw Normal View History

2020-05-07 20:40:18 +00:00
#!/bin/bash
# This script searches for ya.make.in files in repository and generates ya.make files from them.
# ya.make.in is a template with substitutions in form of <? command ?>
# command is interpreted by bash and output is put in place of substitution
ROOT_PATH=$(git rev-parse --show-toplevel)
EXCLUDE_DIRS='build/|integration/|widechar_width/|glibc-compatibility/|memcpy/|consistent-hashing'
find "${ROOT_PATH}" -name 'ya.make.in' | while read path; do
(cd $(dirname "${path}") && perl -pne 's/<\?(.+?)\?>/`$1`/e' < "${path}" > "${path/.in/}")
done