mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 14:18:20 +00:00
PR 1262/filesystem * libcsupport/Makefile.am, libnetworking/libc/herror.c, libnetworking/libc/res_send.c, libnetworking/sys/uio.h, telnetd/Makefile.am, telnetd/README, telnetd/preinstall.am, telnetd/pty.c, telnetd/telnetd.c: Add support for readv() and writev() including documentation and test case. * libcsupport/src/readv.c, libcsupport/src/writev.c: New files.
22 lines
426 B
Makefile
22 lines
426 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
include $(top_srcdir)/automake/compile.am
|
|
|
|
if LIBNETWORKING
|
|
if LIBSHELL
|
|
include_rtemsdir = $(includedir)/rtems
|
|
include_rtems_HEADERS = pty.h telnetd.h passwd.h
|
|
|
|
project_lib_LIBRARIES = libtelnetd.a
|
|
libtelnetd_a_SOURCES = check_passwd.c des.c icmds.c pty.c telnetd.c
|
|
libtelnetd_a_CPPFLAGS = $(AM_CPPFLAGS)
|
|
endif
|
|
endif
|
|
|
|
EXTRA_DIST = README
|
|
|
|
include $(srcdir)/preinstall.am
|
|
include $(top_srcdir)/automake/local.am
|