Add 'CAN-binder/libs/nanopb/' from commit '278ffb890e3d8722e4c7d824baaf221a1e375fc4'
[apps/agl-service-can-low-level.git] / CAN-binder / libs / nanopb / tests / splint / SConscript
1 # Check the nanopb core using splint
2
3 Import('env')
4
5 p = env.WhereIs('splint')
6
7 if p:
8     env.Command('pb_decode.splint', '$NANOPB/pb_decode.c',
9         'splint -f splint/splint.rc $SOURCE 2> $TARGET')
10
11     env.Command('pb_encode.splint', '$NANOPB/pb_encode.c',
12         'splint -f splint/splint.rc $SOURCE 2> $TARGET')
13
14     env.Command('pb_common.splint', '$NANOPB/pb_common.c',
15         'splint -f splint/splint.rc $SOURCE 2> $TARGET')
16