This includes both separate .md files, and documentation that was on the head of the .S source files. Retest everything as this was done, and fix a few easy things.
8 lines
108 B
Bash
Executable File
8 lines
108 B
Bash
Executable File
#!/bin/sh
|
|
img="${1:-}"
|
|
if [ -n "$img" ]; then
|
|
img="RUN=${img%.*}"
|
|
fi
|
|
type="${2:-run}"
|
|
make "${type}" $img
|