You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ventoy/VBLADE/vblade-master/build.sh

15 lines
330 B
Bash

#!/bin/bash
rm -f vblade_*
gcc linux.c aoe.c ata.c bpf.c -Os -o vblade_64
gcc linux.c aoe.c ata.c bpf.c -Os -m32 -o vblade_32
if [ -e vblade_64 ] && [ -e vblade_32 ]; then
echo -e '\n################## SUCCESS ######################\n'
else
echo -e '\n################## FAILED ######################\n'
exit 1
fi