source: rtems/c/src/tests/samples/base_mp/node2/Makefile.am @ 15c4b4c5

4.104.114.84.95
Last change on this file since 15c4b4c5 was 15c4b4c5, checked in by Joel Sherrill <joel.sherrill@…>, on 09/19/01 at 17:21:22

2001-09-19 Ralf Corsepius <corsepiu@…>

  • unlimited/Makefile.am: include leaf.am instead of leaf.cfg.
  • base_mp/node2/Makefile.am: include leaf.am instead of leaf.cfg.
  • base_mp/node1/Makefile.am: include leaf.am instead of leaf.cfg.
  • hello/Makefile.am: include leaf.am instead of leaf.cfg.
  • base_sp/Makefile.am: include leaf.am instead of leaf.cfg.
  • paranoia/Makefile.am: include leaf.am instead of leaf.cfg.
  • cdtest/Makefile.am: include leaf.am instead of leaf.cfg, use make-cxx-exe.
  • ticker/Makefile.am: include leaf.am instead of leaf.cfg.
  • minimum/Makefile.am: include leaf.am instead of leaf.cfg.
  • Property mode set to 100644
File size: 850 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 $(top_srcdir)/../../../../automake/leaf.am
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.