mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 08:32:07 +02:00
25 lines
466 B
Text
25 lines
466 B
Text
|
|
bin_PROGRAMS = irssi-fuzz
|
||
|
|
|
||
|
|
# Force link with clang++ for libfuzzer support
|
||
|
|
CCLD=clang++ $(CXXFLAGS)
|
||
|
|
|
||
|
|
AM_CPPFLAGS = \
|
||
|
|
-I$(top_srcdir)/src \
|
||
|
|
-I$(top_srcdir)/src/core/ \
|
||
|
|
-I$(top_srcdir)/src/irc/core/ \
|
||
|
|
-I$(top_srcdir)/src/fe-common/core/ \
|
||
|
|
$(GLIB_CFLAGS)
|
||
|
|
|
||
|
|
irssi_fuzz_DEPENDENCIES = @COMMON_LIBS@
|
||
|
|
|
||
|
|
irssi_fuzz_LDADD = \
|
||
|
|
@COMMON_LIBS@ \
|
||
|
|
@PROG_LIBS@ \
|
||
|
|
$(FUZZER_LIBS)
|
||
|
|
|
||
|
|
irssi_fuzz_SOURCES = \
|
||
|
|
irssi.c \
|
||
|
|
module-formats.c
|
||
|
|
|
||
|
|
noinst_HEADERS = \
|
||
|
|
module-formats.h
|