File: Makefile.am

package info (click to toggle)
liblouis 3.36.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 86,248 kB
  • sloc: ansic: 37,162; makefile: 1,298; python: 772; lisp: 390; sh: 339; perl: 221; cpp: 21
file content (23 lines) | stat: -rw-r--r-- 553 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
if USE_FUZZER

AM_CPPFLAGS =					\
	-fno-omit-frame-pointer 		\
	-I$(top_srcdir)/liblouis		\
	-I$(top_srcdir)/gnulib			\
	-I$(top_builddir)/gnulib		\
	-g -O2

LDADD =							\
	$(top_builddir)/liblouis/liblouis.la		\
	$(LIBFUZZER_NO_MAIN)

if USE_COVERAGE
AM_CPPFLAGS += -fprofile-instr-generate -fcoverage-mapping
endif

fuzz_translate_SOURCES = fuzz_translate.c
fuzz_backtranslate_SOURCES = fuzz_backtranslate.c
fuzz_translate_generic_SOURCES = fuzz_translate_generic.c
noinst_PROGRAMS = fuzz_translate fuzz_backtranslate fuzz_translate_generic

endif