Files
rtems/testsuites/mptests/mp06/node2/Makefile.am
T
Joel Sherrill 369ef189b2 Patch rtems-rc-19991203-7.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>
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
1999-12-21 15:00:49 +00:00

52 lines
848 B
Makefile

##
## $Id$
##
AUTOMAKE_OPTIONS = foreign 1.4
VPATH = @srcdir@:@srcdir@/..
NODE = 2
TEST = mp06
PGM = ${ARCH}/$(TEST)-node$(NODE).exe
MANAGERS = io mp event timer
# C source names, if any, go here -- minus the .c
C_FILES = init.c task1.c
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
H_FILES = system.h
DOCTYPES = doc scn
DOCS = $(DOCTYPES:%=$(TEST).%)
SRCS = $(DOCS) $(C_FILES) $(H_FILES)
OBJS = $(C_O_FILES)
PRINT_SRCS = $(DOCS)
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(RTEMS_ROOT)/make/leaf.cfg
include $(top_srcdir)/mptests.am
if HAS_MP
#
# (OPTIONAL) Add local stuff here using +=
#
AM_CPPFLAGS += -DNODE_NUMBER=$(NODE) -I$(srcdir)/..
${PGM}: $(OBJS) $(LINK_FILES)
$(make-exe)
all-local: $(ARCH) $(TMPINSTALL_FILES)
else
all-local:
endif
EXTRA_DIST = $(DOCS)
include $(top_srcdir)/../../../../automake/local.am