6 lines
100 B
Bash
Executable File
6 lines
100 B
Bash
Executable File
#!/bin/bash
|
|
echo "Building kernel.img..."
|
|
make
|
|
if [ $? -eq 0 ]; then
|
|
echo "Build successful."
|
|
fi |