forked from Imagelibrary/rtems
* Makefile.am, configure.ac: Added test case for calls that check for an unopened file descriptor. * psxfile02/.cvsignore, psxfile02/Makefile.am, psxfile02/init.c, psxfile02/psxfile02.doc, psxfile02/psxfile02.scn: New files.
27 lines
620 B
Makefile
27 lines
620 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = all
|
|
|
|
rtems_tests_PROGRAMS = psxfile02
|
|
psxfile02_SOURCES = init.c ../../support/src/spin.c
|
|
|
|
dist_rtems_tests_DATA = psxfile02.scn
|
|
dist_rtems_tests_DATA += psxfile02.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
|
|
|
|
LINK_OBJS = $(psxfile02_OBJECTS) $(psxfile02_LDADD)
|
|
LINK_LIBS = $(psxfile02_LDLIBS)
|
|
|
|
psxfile02$(EXEEXT): $(psxfile02_OBJECTS) $(psxfile02_DEPENDENCIES)
|
|
@rm -f psxfile02$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|