You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ffdb/test.sh

16 lines
230 B
Bash

#!/bin/bash
gcc \
*.c \
$(find ../json -name '*.c') \
$(find ../collections/ -name '*.c' ) \
../sha256/sha256.c \
../util/format.c ../reflect/reflect.c \
-DSTANDALONE_TEST \
$* \
-I ../ \
-o ffdb_test
exec ./ffdb_test