-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·19 lines (17 loc) · 1012 Bytes
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# **************************************************************************** #
# _ #
# __ ___.--'_\`. #
# build.sh ( _\`.' - 'o\` ) #
# _\\.'_' _.-' #
# By: mathroy0310 <maroy0310@gmail.com> ( \`. ) //\\\` #
# \\_'-`---'\\__, #
# Created: 2024/08/04 01:32:54 by mathroy0310 \` `-\\ #
# Updated: 2024/08/04 01:32:55 by mathroy0310 ` #
# #
# **************************************************************************** #
#!/bin/sh
set -e
. ./headers.sh
for PROJECT in $PROJECTS; do
(cd $PROJECT && DESTDIR="$SYSROOT" $MAKE install)
done