source: rtems/testsuites/mptests/mp14/node2/Makefile.am @ 369ef189

4.104.114.84.95
Last change on this file since 369ef189 was 369ef189, checked in by Joel Sherrill <joel.sherrill@…>, on 12/21/99 at 15:00:49

Patch rtems-rc-19991203-7.diff from Ralf Corsepius <corsepiu@…>
which does minor cleanup for Makefile.ams below mptests, which only
removes some bogus comments from the Makefile.ams.

To apply:

patch -p1 < rtems-rc-19991203-8.diff
./bootstrap

  • Property mode set to 100644
File size: 941 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6 
7VPATH = @srcdir@:@srcdir@/..
8
9NODE = 2
10TEST = mp14
11PGM = ${ARCH}/$(TEST)-node$(NODE).exe
12
13MANAGERS = io mp event partition semaphore timer message
14
15# C source names, if any, go here -- minus the .c
16C_FILES = exit.c init.c delay.c evtask1.c evtmtask.c pttask1.c smtask1.c \
17    msgtask1.c
18C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
19
20H_FILES = system.h
21
22DOCTYPES = doc scn
23DOCS = $(DOCTYPES:%=$(TEST).%)
24
25SRCS = $(DOCS) $(C_FILES) $(H_FILES)
26OBJS = $(C_O_FILES)
27
28PRINT_SRCS = $(DOCS)
29
30include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
31include $(RTEMS_ROOT)/make/leaf.cfg
32include $(top_srcdir)/mptests.am
33
34if HAS_MP
35
36#
37# (OPTIONAL) Add local stuff here using +=
38#
39
40AM_CPPFLAGS += -DNODE_NUMBER=$(NODE) -I$(srcdir)/..
41
42${PGM}: $(OBJS) $(LINK_FILES)
43        $(make-exe)
44
45all-local: $(ARCH) $(TMPINSTALL_FILES)
46else
47all-local:
48endif
49
50EXTRA_DIST = $(DOCS)
51
52include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.