2015-09-12 14:48:06 +02:00
|
|
|
include $(top_srcdir)/Makefile.am.common
|
|
|
|
|
2015-09-12 17:51:11 +02:00
|
|
|
if HOST_OPENBSD
|
|
|
|
|
2015-09-12 16:50:44 +02:00
|
|
|
if HAVE_POLL
|
|
|
|
|
|
|
|
noinst_PROGRAMS = nc
|
2015-09-12 14:48:06 +02:00
|
|
|
|
2015-09-13 14:23:04 +02:00
|
|
|
EXTRA_DIST = nc.1
|
|
|
|
|
2015-09-12 14:48:06 +02:00
|
|
|
nc_LDADD = $(PLATFORM_LDADD) $(PROG_LDADD)
|
|
|
|
nc_LDADD += $(top_builddir)/tls/libtls.la
|
|
|
|
|
|
|
|
nc_SOURCES = atomicio.c
|
|
|
|
nc_SOURCES += netcat.c
|
|
|
|
nc_SOURCES += socks.c
|
|
|
|
noinst_HEADERS = atomicio.h
|
2015-09-12 16:50:44 +02:00
|
|
|
|
|
|
|
if !HAVE_STRTONUM
|
2015-09-12 17:15:00 +02:00
|
|
|
nc_SOURCES += strtonum.c
|
2015-09-12 16:50:44 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
2015-09-12 17:51:11 +02:00
|
|
|
|
|
|
|
endif
|