SummerCart64/sw/n64/build.sh
Polprzewodnikowy 5671e20c3f huge cleanup
2021-09-01 17:21:41 +02:00

10 lines
319 B
Bash

#!/bin/bash
#--mount type=bind,src=`realpath "$(pwd)/../libsc64"`,target="/src/libsc64" \
build_in_docker() {
docker run -t \
--mount type=bind,src=`realpath $(pwd)`,target="/src" \
$1 /bin/bash -c "cd /src && make clean && make -f $2 all"
}
build_in_docker "anacierdem/libdragon:6.0.2" "Makefile"