Files
rtems/testsuites/libtests/termios01/Makefile.am
Joel Sherrill 4d5b156c2c 2009-08-15 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac: Add new test to exercise tcgetattr and
	tcsetattr. Does a variety of baud, parity, stop bits, and bits per
	character with the assistance of a special test driver which prints
	the requests.
	* termios01/.cvsignore, termios01/Makefile.am, termios01/init.c,
	termios01/termios01.doc, termios01/termios01.scn,
	termios01/termios_testdriver.c, termios01/termios_testdriver.h: New files.
2009-08-15 17:54:48 +00:00

30 lines
723 B
Makefile

##
## $Id$
##
MANAGERS = all
rtems_tests_PROGRAMS = termios01
termios01_SOURCES = init.c termios_testdriver.c
dist_rtems_tests_DATA = termios01.scn
dist_rtems_tests_DATA += termios01.doc
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
termios01_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
AM_CPPFLAGS += -I$(top_srcdir)/include
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
LINK_OBJS = $(termios01_OBJECTS) $(termios01_LDADD)
LINK_LIBS = $(termios01_LDLIBS)
termios01$(EXEEXT): $(termios01_OBJECTS) $(termios01_DEPENDENCIES)
@rm -f termios01$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am