forked from Imagelibrary/rtems
Rework.
This commit is contained in:
@@ -2,60 +2,33 @@
|
||||
## $Id$
|
||||
##
|
||||
|
||||
PGM = $(ARCH)/mp01-node1.exe
|
||||
|
||||
MANAGERS = io mp
|
||||
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp01-node1.doc mp01-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp01-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp01-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
PGM = $(ARCH)/mp01-node1.exe
|
||||
|
||||
$(project_bspdir)/tests/mp01-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node1
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/mp01-node1.scn: mp01-node1.scn $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp01-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node1/mp01-node1.scn
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp01-node2.doc mp01-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp01-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp01-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp01-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node2
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/mp01-node2.scn: mp01-node2.scn $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp01-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node2/mp01-node2.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp02-node1.doc mp02-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp02-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp02-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp02-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node1
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/mp02-node1.scn: mp02-node1.scn $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp02-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node1/mp02-node1.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp02-node2.doc mp02-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp02-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp02-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp02-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node2
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/mp02-node2.scn: mp02-node2.scn $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp02-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node2/mp02-node2.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp timer event
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../delay.c ../system.h
|
||||
|
||||
DOCS = mp03-node1.doc mp03-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp03-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp03-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp03-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node1
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/mp03-node1.scn: mp03-node1.scn $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp03-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node1/mp03-node1.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp timer event
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../delay.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp03-node2.doc mp03-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp03-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp03-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp03-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node2
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/mp03-node2.scn: mp03-node2.scn $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp03-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node2/mp03-node2.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp04-node1.doc mp04-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp04-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp04-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp04-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node1
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/mp04-node1.scn: mp04-node1.scn $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp04-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node1/mp04-node1.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp04-node2.doc mp04-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp04-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp04-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp04-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node2
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/mp04-node2.scn: mp04-node2.scn $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp04-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node2/mp04-node2.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp signal timer
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../asr.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp05-node1.doc mp05-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp05-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp05-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp05-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node1
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/mp05-node1.scn: mp05-node1.scn $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp05-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node1/mp05-node1.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp signal timer
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../asr.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp05-node2.doc mp05-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp05-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp05-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp05-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node2
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/mp05-node2.scn: mp05-node2.scn $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp05-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node2/mp05-node2.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp event timer
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp06-node1.doc mp06-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp06-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp06-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp06-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node1
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/mp06-node1.scn: mp06-node1.scn $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp06-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node1/mp06-node1.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp event timer
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp06-node2.doc mp06-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp06-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp06-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp06-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node2
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/mp06-node2.scn: mp06-node2.scn $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp06-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node2/mp06-node2.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp event timer
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp07-node1.doc mp07-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp07-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp07-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp07-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node1
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/mp07-node1.scn: mp07-node1.scn $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp07-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node1/mp07-node1.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp event timer
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp07-node2.doc mp07-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp07-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp07-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp07-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node2
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/mp07-node2.scn: mp07-node2.scn $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp07-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node2/mp07-node2.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp semaphore
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp08-node1.doc mp08-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp08-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp08-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp08-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node1
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/mp08-node1.scn: mp08-node1.scn $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp08-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node1/mp08-node1.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp semaphore
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../system.h
|
||||
|
||||
DOCS = mp08-node2.doc mp08-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp08-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp08-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp08-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node2
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/mp08-node2.scn: mp08-node2.scn $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp08-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node2/mp08-node2.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp message
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../recvmsg.c ../sendmsg.c ../system.h
|
||||
|
||||
DOCS = mp09-node1.doc mp09-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp09-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp09-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp09-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node1
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/mp09-node1.scn: mp09-node1.scn $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp09-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node1/mp09-node1.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp message
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../recvmsg.c ../sendmsg.c ../system.h
|
||||
|
||||
DOCS = mp09-node2.doc mp09-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp09-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp09-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp09-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node2
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/mp09-node2.scn: mp09-node2.scn $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp09-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node2/mp09-node2.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp message semaphore
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../task2.c ../task3.c ../system.h
|
||||
|
||||
DOCS = mp10-node1.doc mp10-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp10-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp10-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp10-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node1
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/mp10-node1.scn: mp10-node1.scn $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp10-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node1/mp10-node1.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp message semaphore
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../task2.c ../task3.c ../system.h
|
||||
|
||||
DOCS = mp10-node2.doc mp10-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp10-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp10-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp10-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node2
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/mp10-node2.scn: mp10-node2.scn $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp10-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node2/mp10-node2.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp message partition semaphore
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../system.h
|
||||
|
||||
DOCS = mp11-node1.doc mp11-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp11-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp11-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp11-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node1
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/mp11-node1.scn: mp11-node1.scn $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp11-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node1/mp11-node1.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp message partition semaphore
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../system.h
|
||||
|
||||
DOCS = mp11-node2.doc mp11-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp11-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp11-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp11-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node2
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/mp11-node2.scn: mp11-node2.scn $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp11-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node2/mp11-node2.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp partition
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../system.h
|
||||
|
||||
DOCS = mp12-node1.doc mp12-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp12-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp12-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp12-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node1
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/mp12-node1.scn: mp12-node1.scn $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp12-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node1/mp12-node1.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp partition
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../system.h
|
||||
|
||||
DOCS = mp12-node2.doc mp12-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp12-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp12-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp12-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node2
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/mp12-node2.scn: mp12-node2.scn $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp12-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node2/mp12-node2.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp message semaphore
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../task2.c ../system.h
|
||||
|
||||
DOCS = mp13-node1.doc mp13-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp13-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp13-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp13-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node1
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/mp13-node1.scn: mp13-node1.scn $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp13-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node1/mp13-node1.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,53 +9,27 @@ MANAGERS = io mp message semaphore
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../task1.c ../task2.c ../system.h
|
||||
|
||||
DOCS = mp13-node2.doc mp13-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp13-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp13-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp13-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node2
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/mp13-node2.scn: mp13-node2.scn $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp13-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node2/mp13-node2.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I$(srcdir)/..
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -10,54 +10,28 @@ noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../exit.c ../init.c ../delay.c ../evtask1.c ../evtmtask.c \
|
||||
../pttask1.c ../smtask1.c ../msgtask1.c ../system.h
|
||||
|
||||
DOCS = mp14-node1.doc mp14-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp14-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp14-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp14-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node1
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node1/mp14-node1.scn: mp14-node1.scn $(project_bspdir)/tests/screens/mptests/node1/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp14-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node1/mp14-node1.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I$(srcdir)/..
|
||||
AM_CPPFLAGS += -DMAX_LONG_TEST_DURATION=$(MAX_LONG_TEST_DURATION)
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -10,54 +10,28 @@ noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../exit.c ../init.c ../delay.c ../evtask1.c ../evtmtask.c \
|
||||
../pttask1.c ../smtask1.c ../msgtask1.c ../system.h
|
||||
|
||||
DOCS = mp14-node2.doc mp14-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = mp14-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = mp14-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/mp14-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests/screens/mptests/node2
|
||||
@: > $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/tests/screens/mptests/node2/mp14-node2.scn: mp14-node2.scn $(project_bspdir)/tests/screens/mptests/node2/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/mp14-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/tests/screens/mptests/node2/mp14-node2.scn
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I$(srcdir)/..
|
||||
AM_CPPFLAGS += -DMAX_LONG_TEST_DURATION=$(MAX_LONG_TEST_DURATION)
|
||||
|
||||
if HAS_MP
|
||||
|
||||
|
||||
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
$(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
|
||||
|
||||
@@ -9,45 +9,25 @@ MANAGERS = io mp
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../apptask.c ../system.h
|
||||
|
||||
DOCS = base_mp-node1.doc base_mp-node1.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = base_mp-node1.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = base_mp-node1.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/samples/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/samples
|
||||
@: > $(project_bspdir)/samples/$(dirstamp)
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/samples/base_mp-node1.exe: $(PGM) $(project_bspdir)/samples/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/base_mp-node1.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/base_mp-node1.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/samples/base_mp-node1.exe
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=1 -I.
|
||||
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
$(PGM): $(OBJS) $(LINK_FILES)
|
||||
$(make-exe)
|
||||
|
||||
all-local: $(TMPINSTALL_FILES)
|
||||
|
||||
EXTRA_DIST = $(DOCS)
|
||||
|
||||
CLEANFILES = $(TMPINSTALL_FILES)
|
||||
|
||||
include $(top_srcdir)/../automake/local.am
|
||||
|
||||
@@ -9,45 +9,25 @@ MANAGERS = io mp
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = ../init.c ../apptask.c ../system.h
|
||||
|
||||
DOCS = base_mp-node2.doc base_mp-node2.scn
|
||||
testsdir = $(libdir)/tests
|
||||
scndir = $(testsdir)
|
||||
dist_scn_DATA = base_mp-node2.scn
|
||||
docdir = $(testsdir)
|
||||
dist_doc_DATA = base_mp-node2.doc
|
||||
|
||||
OBJS = $(lib_a_OBJECTS)
|
||||
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||
include $(top_srcdir)/../automake/compile.am
|
||||
include $(top_srcdir)/../automake/leaf.am
|
||||
|
||||
project_bspdir=$(PROJECT_ROOT)
|
||||
|
||||
$(project_bspdir)/samples/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/samples
|
||||
@: > $(project_bspdir)/samples/$(dirstamp)
|
||||
$(project_bspdir)/tests/$(dirstamp):
|
||||
@$(mkdir_p) $(project_bspdir)/tests
|
||||
@: > $(project_bspdir)/tests/$(dirstamp)
|
||||
|
||||
$(project_bspdir)/samples/base_mp-node2.exe: $(PGM) $(project_bspdir)/samples/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
$(project_bspdir)/tests/base_mp-node2.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
|
||||
$(INSTALL_PROGRAM) $< $@
|
||||
|
||||
TMPINSTALL_FILES = $(project_bspdir)/tests/base_mp-node2.exe
|
||||
TMPINSTALL_FILES += $(project_bspdir)/samples/base_mp-node2.exe
|
||||
|
||||
$(PGM): ${ARCH}/$(dirstamp)
|
||||
|
||||
AM_CPPFLAGS += -DNODE_NUMBER=2 -I.
|
||||
|
||||
tests_SCRIPTS = $(PGM)
|
||||
|
||||
${PGM}: $(OBJS) $(LINK_FILES)
|
||||
$(PGM): $(OBJS) $(LINK_FILES)
|
||||
$(make-exe)
|
||||
|
||||
all-local: $(TMPINSTALL_FILES)
|
||||
|
||||
EXTRA_DIST = $(DOCS)
|
||||
|
||||
CLEANFILES = $(TMPINSTALL_FILES)
|
||||
|
||||
include $(top_srcdir)/../automake/local.am
|
||||
|
||||
Reference in New Issue
Block a user