source: rtems/testsuites/samples/base_mp/node1/Makefile.am @ ebb7d37

4.104.114.84.95
Last change on this file since ebb7d37 was ebb7d37, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/16/03 at 16:27:32

2003-08-16 Ralf Corsepius <corsepiu@…>

Makefile.am: Reflect having moved automake.
base_mp/Makefile.am: Reflect having moved automake.
base_mp/node1/Makefile.am: Reflect having moved automake.
base_mp/node2/Makefile.am: Reflect having moved automake.
base_sp/Makefile.am: Reflect having moved automake.
cdtest/Makefile.am: Reflect having moved automake.
fileio/Makefile.am: Reflect having moved automake.
hello/Makefile.am: Reflect having moved automake.
loopback/Makefile.am: Reflect having moved automake.
minimum/Makefile.am: Reflect having moved automake.
paranoia/Makefile.am: Reflect having moved automake.
pppd/Makefile.am: Reflect having moved automake.
ticker/Makefile.am: Reflect having moved automake.
unlimited/Makefile.am: Reflect having moved automake.

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