summaryrefslogblamecommitdiffstats
path: root/build
blob: 7b227c4bd7ff06766e76f953823e9f3d5066df16 (plain) (tree)
1
2
3
4
5
6
7
8







                                                        
#!/bin/sh
set -eu

[ -d "$1" ] || (echo "package $1 not found" >&2; exit 1)

[ -f "$1/Makefile" ] && (cd "$1" && make -s build)

true