source: rtems/c/src/tests/samples/Makefile.in @ f4a8ee1

4.104.114.84.95
Last change on this file since f4a8ee1 was f4a8ee1, checked in by Joel Sherrill <joel.sherrill@…>, on 03/17/99 at 16:01:03

Unlimited objects patch from Chris Johns <ccj@…>. Email follows:

First, the unlimited patch. I have compiled the unlmited patch for the
Linux posix BSP only and it seems to work cleanly. I would like a really
major application run on this change before commiting as the changes are
very core and significant. I am currently building all the tests to run.

I have no targets suitable to test on at the moment.

I have tested the patch for inline functions and macros.

Turning macros on has found some core bugs. I have fixed these but have
not run all the tests. Please review the patch for these changes. They
are:

1) The conditional compilation for MP support broke the core messages
code. You cannot embed a conditional macro in another macro. The Send
and Urgent Send calls are macros.

2) User extensions handler initialisation now has two parameters. I have
updated the macros to support the extra parameter.

The patch also contains the gcc-target-default.cfg fix required to build
the kernel. More of a by product than a fix for you.

  • Property mode set to 100644
File size: 671 bytes
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11INSTALL = @INSTALL@
12
13include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
14include $(RTEMS_ROOT)/make/directory.cfg
15
16# cdtest is a C++ constructor/destructor test
17# We only build it if HAS_CPLUSCPLUS was defined
18
19CPLUSPLUS_TESTS_yes_V = cdtest
20CPLUSPLUS_TESTS = $(CPLUSPLUS_TESTS_$(HAS_CPLUSPLUS)_V)
21
22# base_mp is a sample multiprocessing test
23# We only build it if HAS_MP was defined
24
25MP_TESTS_yes_V = base_mp
26MP_TESTS = $(MP_TESTS_$(HAS_MP)_V)
27
28FP_TESTS = paranoia
29
30SUB_DIRS=hello ticker base_sp unlimited \
31         $(MP_TESTS) $(CPLUSPLUS_TESTS) $(FP_TESTS)
32
33
34
Note: See TracBrowser for help on using the repository browser.