-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.sh
executable file
·87 lines (47 loc) · 1.16 KB
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/bin/bash
clear
echo -e "\nSTARTING PROGRAM\n"
# Compile in the src/ directory and run applications in the build/ directory
CC=gcc
LINKER=-lm
SOURCE="src/"
BUILD="build/"
FILETYPE=*.c
# Creates an array containing all the .c extension files
declare -a FILES
for files in $SOURCE$FILETYPE; do
FILES=("${FILES[@]}" "$files")
done
# Compiles .c files in the src directory
if [ "${#FILES[@]}" -gt 0 ]; then
i=0
echo -e "File Names:"
for items in "${FILES[@]}"; do
buildfile="`echo $items | sed 's/\.c//' | sed 's/src\///'`"
i=$i+1
$CC $items -o $BUILD$buildfile $LINKER
echo "$(($i)). `echo $items | sed 's/src\///'`"
done
echo -e "\nWere Compiled\n"
else
echo -e "\n$SOURCE contains no files with .c extension\n"
exit 1
fi
# Run all the compiled apps in the order they were compiled
declare -a APPS
for files in $BUILD*; do
APPS=("${APPS[@]}" "$files")
chmod 711 $files
done
if [ "${#APPS[@]}" -eq "${#FILES[@]}" ]; then
echo -e "Running applications:\n"
for items in "${APPS[@]}"; do
./"$items"
done
echo -e "\nENDING PROGRAM\n"
else
echo -e "\nc files in $SOURCE were not all compiled successfully"
echo -e "\nENDING PROGRAM\n"
exit 1
fi
exit 0