1 AUTOMAKE_OPTIONS = foreign no-dependencies 2 3 bin_PROGRAMS = scanssh 4 5 scanssh_SOURCES = scanssh.c atomicio.c exclude.c connecter.c xmalloc.c \ 6 interface.c socks.c http.c telnet.c exclude.h interface.h \ 7 scanssh.h socks.h xmalloc.h 8 scanssh_LDADD = @LIBOBJS@ @PCAPLIB@ @EVENTLIB@ @DNETLIB@ 9 CFLAGS = -O2 -Wall -g 10 11 INCLUDES = -I$(top_srcdir)/@DNETCOMPAT@ -I$(top_srcdir)/compat \ 12 @EVENTINC@ @PCAPINC@ @DNETINC@ 13 14 man_MANS = scanssh.1 15 16 EXTRA_DIST = $(man_MANS) README acconfig.h \ 17 md5.c err.c \ 18 compat/libdnet/dnet.h \ 19 compat/err.h compat/md5.h \ 20 compat/sys/queue.h compat/sys/tree.h 21 22 DISTCLEANFILES = *~