forked from Imagelibrary/rtems
* mp01/node1/Makefile.am, mp01/node2/Makefile.am, mp02/node1/Makefile.am, mp02/node2/Makefile.am, mp03/node1/Makefile.am, mp03/node2/Makefile.am, mp04/node1/Makefile.am, mp04/node2/Makefile.am, mp05/node1/Makefile.am, mp05/node2/Makefile.am, mp06/node1/Makefile.am, mp06/node2/Makefile.am, mp07/node1/Makefile.am, mp07/node2/Makefile.am, mp08/node1/Makefile.am, mp08/node2/Makefile.am, mp09/node1/Makefile.am, mp09/node2/Makefile.am, mp10/node1/Makefile.am, mp10/node2/Makefile.am, mp11/node1/Makefile.am, mp11/node2/Makefile.am, mp12/node1/Makefile.am, mp12/node2/Makefile.am, mp13/node1/Makefile.am, mp13/node2/Makefile.am, mp14/node1/Makefile.am, mp14/node2/Makefile.am: Remove $(LIB_VARIANT).
53 lines
879 B
Makefile
53 lines
879 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
NODE = 2
|
|
TEST = mp01
|
|
PGM = ${ARCH}/$(TEST)-node$(NODE).exe
|
|
|
|
MANAGERS = io mp
|
|
|
|
C_FILES = ../init.c ../task1.c
|
|
C_O_FILES = $(C_FILES:../%.c=${ARCH}/%.$(OBJEXT))
|
|
|
|
$(ARCH)/%.$(OBJEXT): ../%.c $(ARCH)/$(dirstamp)
|
|
${COMPILE} -o $@ -c $<
|
|
|
|
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 $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
include $(top_srcdir)/mptests.am
|
|
|
|
AM_CPPFLAGS += -DNODE_NUMBER=$(NODE) -I$(srcdir)/..
|
|
|
|
if HAS_MP
|
|
|
|
#
|
|
# (OPTIONAL) Add local stuff here using +=
|
|
#
|
|
|
|
${PGM}: $(OBJS) $(LINK_FILES)
|
|
$(make-exe)
|
|
|
|
all-local: $(TMPINSTALL_FILES)
|
|
else
|
|
all-local:
|
|
endif
|
|
|
|
EXTRA_DIST = $(DOCS)
|
|
|
|
CLEANFILES = $(TMPINSTALL_FILES)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|