nostalgia/scripts/run-make

9 lines
128 B
Plaintext
Raw Normal View History

2017-12-23 23:38:21 -06:00
#! /usr/bin/env bash
set -e
for f in $(find $1 -maxdepth 1 -mindepth 1 -type d)
do
2018-01-28 00:25:19 -06:00
cmake --build "$f" --target $2 -- -j
2017-12-23 23:38:21 -06:00
done