summaryrefslogtreecommitdiff
path: root/data/iokittools/make.sh
blob: 0815a52e99fa474c7f39ffe2a26c0a1e0e236bc3 (plain)
1
2
3
4
5
6
7
shopt -s extglob
pkg:setup
for tproj in *.tproj; do
    tproj=$(basename "${tproj}" .tproj)
    ${PKG_TARG}-gcc -lcurses -o "${tproj}" "${tproj}.tproj"/*.c -framework CoreFoundation -framework IOKit
    pkg:usrbin "${tproj}"
done