-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclean.sh
executable file
·22 lines (19 loc) · 1 KB
/
clean.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# **************************************************************************** #
# _ #
# __ ___.--'_\`. #
# clean.sh ( _\`.' - 'o\` ) #
# _\\.'_' _.-' #
# By: mathroy0310 <maroy0310@gmail.com> ( \`. ) //\\\` #
# \\_'-`---'\\__, #
# Created: 2024/08/04 01:32:56 by mathroy0310 \` `-\\ #
# Updated: 2024/08/04 01:32:57 by mathroy0310 ` #
# #
# **************************************************************************** #
#!/bin/sh
set -e
. ./config.sh
for PROJECT in $PROJECTS; do
(cd $PROJECT && $MAKE clean)
done
rm -rf sysroot
rm -rf frog-os.img