summaryrefslogtreecommitdiff
path: root/tools/include_check.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/include_check.sh')
-rwxr-xr-xtools/include_check.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/include_check.sh b/tools/include_check.sh
index 9958c9a..e684d0b 100755
--- a/tools/include_check.sh
+++ b/tools/include_check.sh
@@ -1,5 +1,5 @@
1#!/bin/bash 1#!/bin/sh
2# 2
3# Copyright (c) 2019 Yubico AB. All rights reserved. 3# Copyright (c) 2019 Yubico AB. All rights reserved.
4# Use of this source code is governed by a BSD-style 4# Use of this source code is governed by a BSD-style
5# license that can be found in the LICENSE file. 5# license that can be found in the LICENSE file.
@@ -8,14 +8,14 @@ check() {
8 for f in $(find $1 -maxdepth 1 -name '*.h'); do 8 for f in $(find $1 -maxdepth 1 -name '*.h'); do
9 echo "#include \"$f\"" | \ 9 echo "#include \"$f\"" | \
10 cc $CFLAGS -Isrc -xc -c - -o /dev/null 2>&1 10 cc $CFLAGS -Isrc -xc -c - -o /dev/null 2>&1
11 echo $f $CFLAGS $? 11 echo "$f $CFLAGS $?"
12 done 12 done
13} 13}
14 14
15check examples 15check examples
16check fuzz 16check fuzz
17check openbsd-compat 17check openbsd-compat
18CFLAGS=-D_FIDO_INTERNAL check src 18CFLAGS="${CFLAGS} -D_FIDO_INTERNAL" check src
19check src/fido.h 19check src/fido.h
20check src/fido 20check src/fido
21check tools 21check tools