mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
640 B
18 lines
640 B
if HAVE_CURSES
|
|
bin_PROGRAMS = clamdtop
|
|
man_MANS = $(top_builddir)/docs/man/clamdtop.1
|
|
clamdtop_SOURCES = \
|
|
$(top_srcdir)/shared/optparser.c \
|
|
$(top_srcdir)/shared/optparser.h \
|
|
$(top_srcdir)/shared/getopt.c \
|
|
$(top_srcdir)/shared/getopt.h \
|
|
$(top_srcdir)/shared/misc.c \
|
|
$(top_srcdir)/shared/misc.h \
|
|
clamdtop.c
|
|
|
|
AM_CFLAGS=@WERR_CFLAGS@
|
|
AM_CPPFLAGS = -I$(top_srcdir) @CURSES_CPPFLAGS@ @SSL_CPPFLAGS@ @JSON_CPPFLAGS@
|
|
clamdtop_LDADD = @CURSES_LIBS@ @SSL_LDFLAGS@ @SSL_LIBS@ $(top_builddir)/libclamav/libclamav_internal_utils_nothreads.la
|
|
endif
|
|
DEFS = @DEFS@ -DCL_NOTHREADS -DCL_NOLIBCLAMAV
|
|
EXTRA_DIST = clamdtop.c
|
|
|