Files
rtems/testsuites/libtests/networking01/Makefile.am
Christian Mauderer 195d412d39 libnetworking: Add minimal getnameinfo()
This implementation just falls back to giving a string representation of
the IP.  It supports IPv4 only.

Add test for getnameinfo().
2016-06-28 13:01:47 +02:00

23 lines
617 B
Makefile

rtems_tests_PROGRAMS = networking01
networking01_SOURCES = init.c
dist_rtems_tests_DATA = networking01.scn
dist_rtems_tests_DATA += networking01.doc
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
AM_CPPFLAGS += -I$(top_srcdir)/termios04
LINK_OBJS = $(networking01_OBJECTS)
LINK_LIBS = $(networking01_LDLIBS)
networking01$(EXEEXT): $(networking01_OBJECTS) $(networking01_DEPENDENCIES)
@rm -f networking01$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am