forked from Imagelibrary/rtems
* Makefile.am, configure.ac: Add test to exercise IMFS behaviour with files of maximum sizes. * psximfs01/.cvsignore, psximfs01/Makefile.am, psximfs01/init.c, psximfs01/psximfs01.doc, psximfs01/psximfs01.scn: New files.
27 lines
595 B
Makefile
27 lines
595 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = all
|
|
|
|
rtems_tests_PROGRAMS = psximfs01
|
|
psximfs01_SOURCES = init.c
|
|
|
|
dist_rtems_tests_DATA = psximfs01.scn
|
|
dist_rtems_tests_DATA += psximfs01.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 = $(psximfs01_OBJECTS) $(psximfs01_LDADD)
|
|
LINK_LIBS = $(psximfs01_LDLIBS)
|
|
|
|
psximfs01$(EXEEXT): $(psximfs01_OBJECTS) $(psximfs01_DEPENDENCIES)
|
|
@rm -f psximfs01$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|