source: rtems/c/src/tests/mptests/mp07/node1/Makefile.am @ ed794ad

4.104.114.84.95
Last change on this file since ed794ad was ed794ad, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:44:13

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • mp01/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp01/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp01/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp02/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp02/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp02/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp03/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp03/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp03/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp04/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp04/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp04/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp05/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp05/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp05/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp06/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp06/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp06/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp07/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp07/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp07/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp08/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp08/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp08/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp09/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp09/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp09/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp10/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp10/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp10/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp11/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp11/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp11/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp12/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp12/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp12/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp13/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp13/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp13/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp14/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp14/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mp14/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 833 bytes
Line 
1##
2## $Id$
3##
4
5
6VPATH = @srcdir@:@srcdir@/..
7
8NODE = 1
9TEST = mp07
10PGM = ${ARCH}/$(TEST)-node$(NODE).exe
11
12MANAGERS = io mp event timer
13
14C_FILES = init.c task1.c
15C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
16
17H_FILES = system.h
18
19DOCTYPES = doc scn
20DOCS = $(DOCTYPES:%=$(TEST).%)
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)/mptests.am
31
32AM_CPPFLAGS += -DNODE_NUMBER=$(NODE) -I$(srcdir)/..
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.