mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-26 07:34:15 +01:00
12 lines
312 B
Bash
Executable File
12 lines
312 B
Bash
Executable File
#!/bin/bash
|
|
|
|
build_in_docker() {
|
|
docker run -t \
|
|
--mount type=bind,src=`realpath $(pwd)`,target="/src" \
|
|
$1 /bin/bash -c "cd /src && make -f $2 all"
|
|
}
|
|
|
|
build_in_docker "anacierdem/libdragon:latest" "Makefile.libdragon"
|
|
|
|
build_in_docker "polprzewodnikowy/n64sdkmod:latest" "Makefile.libultra"
|