9 lines
129 B
Bash
Executable File
9 lines
129 B
Bash
Executable File
#!/bin/sh
|
|
|
|
dir="$(dirname "$0")"
|
|
. "$dir"/../cflags
|
|
|
|
$cc $cflags ${@:--DOPPAI_IMPLEMENTATION} \
|
|
test.c $ldflags -o oppai_test
|
|
|