mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2026-02-07 13:31:36 -05:00
18 lines
560 B
Makefile
18 lines
560 B
Makefile
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_CPPFLAGS = -I$(top_srcdir) @CURSES_CPPFLAGS@
|
|
clamdtop_LDADD = @CURSES_LIBS@ $(top_builddir)/libclamav/libclamav_internal_utils_nothreads.la
|
|
endif
|
|
DEFS = @DEFS@ -DCL_NOTHREADS -DCL_NOLIBCLAMAV
|
|
EXTRA_DIST = clamdtop.c
|