source: rtems/testsuites/samples/base_mp/node2/Makefile.am @ 6212465d

4.104.114.84.95
Last change on this file since 6212465d was 6212465d, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/00 at 16:11:24

2000-09-04 Ralf Corsepius <corsepiu@…>

  • base_mp/node1/Makefile.am, base_mp/node2/Makefile.am, base_sp/Makefile.am, cdtest/Makefile.am, hello/Makefile.am, minimum/Makefile.am, paranoia/Makefile.am, ticker/Makefile.am, unlimited/Makefile.am: Include compile.am
  • Property mode set to 100644
File size: 835 bytes
Line 
1##
2##  $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7VPATH = @srcdir@:@srcdir@/..
8
9NODE = 2
10SAMPLE = base_mp-node$(NODE)
11PGM = ${ARCH}/$(SAMPLE).exe
12
13MANAGERS = io mp
14
15C_FILES = init.c apptask.c
16C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
17
18H_FILES = system.h
19
20DOCTYPES = doc scn
21DOCS = $(DOCTYPES:%=base_mp.%)
22
23SRCS = $(DOCS) $(C_FILES) $(H_FILES)
24OBJS = $(C_O_FILES)
25
26PRINT_SRCS = $(DOCS)
27
28include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
29include $(top_srcdir)/../../../../automake/compile.am
30include $(RTEMS_ROOT)/make/leaf.cfg
31include $(top_srcdir)/sample.am
32
33AM_CPPFLAGS += -DNODE_NUMBER=$(NODE) -I.
34
35if HAS_MP
36
37#
38# (OPTIONAL) Add local stuff here using +=
39#
40
41${PGM}: $(OBJS) $(LINK_FILES)
42        $(make-exe)
43
44all-local: $(ARCH) $(TMPINSTALL_FILES)
45else
46all-local:
47endif
48
49EXTRA_DIST = $(DOCS)
50
51include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.