Files
rtems/testsuites/libtests/defaultconfig01/Makefile.am
Sebastian Huber e870941bb0 libmisc: More useful default configuration
The dummy.c was a de-facto default configuration.  Rename it to
default-configuration.c.  Use unlimited objects and the stack checker.
This makes it easier for new RTEMS users which will likely use this file
if they just work with the usual main() function as the application
entry point.  Provide proper arguments for main() using the BSP command
line.  Add spare user extensions and drivers.

Do not initialize the network by default.  Delete bspinit.c.
2014-12-05 07:47:06 +01:00

20 lines
580 B
Makefile

rtems_tests_PROGRAMS = defaultconfig01
defaultconfig01_SOURCES = init.c
dist_rtems_tests_DATA = defaultconfig01.scn defaultconfig01.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 = $(defaultconfig01_OBJECTS)
LINK_LIBS = $(defaultconfig01_LDLIBS)
defaultconfig01$(EXEEXT): $(defaultconfig01_OBJECTS) $(defaultconfig01_DEPENDENCIES)
@rm -f defaultconfig01$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am