diff options
author | Keith Packard <keithp@keithp.com> | 2019-01-03 11:40:32 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2019-01-03 11:40:32 -0800 |
commit | f14c799ae7ff3be56c28f5694f04c03daff7708e (patch) | |
tree | b66f24c1cf37477d432d4bc75d29821d745c4928 /ao-tools/ao-bm70 | |
parent | adf4bec88df1822031e1a8b00422de8b8b0c0cd4 (diff) |
ao-tools: Add lots of compiler warning flags to ao-tools build
This catches some uninitialized variable errors which cause
ao-cal-accel to crash (fixes coming next)
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools/ao-bm70')
-rw-r--r-- | ao-tools/ao-bm70/Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ao-tools/ao-bm70/Makefile.am b/ao-tools/ao-bm70/Makefile.am new file mode 100644 index 00000000..f13ce0f1 --- /dev/null +++ b/ao-tools/ao-bm70/Makefile.am @@ -0,0 +1,7 @@ +bin_PROGRAMS=ao-bm70 + +AM_CFLAGS=-O0 -g + +ao_bm70_SOURCES = ao-bm70.c + +man_MANS=ao-bm70.1 |