7 lines
123 B
Bash
Executable File
7 lines
123 B
Bash
Executable File
#!/bin/sh
|
|
|
|
dir="$(dirname "$0")"
|
|
. "$dir"/cflags
|
|
$cc $cflags "$@" -DOPPAI_IMPLEMENTATION main.c oppai.c $ldflags -o oppai
|
|
|