forked from Imagelibrary/rtems
This solves a build dependency issue, e.g. building tests before librtemsbsp.a exists. Close #3079.
23 lines
554 B
Makefile
23 lines
554 B
Makefile
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
|
|
include $(top_srcdir)/ada.am
|
|
|
|
AM_ADAFLAGS += -I$(srcdir)/..
|
|
|
|
if EXPADA
|
|
noinst_PROGRAMS = ada_base_mp_node2
|
|
ada_base_mp_node2_SOURCES = mptest-per_node_configuration.adb
|
|
endif
|
|
|
|
ada_base_mp_node2$(EXEEXT): ../mptest.adb init.o
|
|
$(GNATCOMPILE) -margs -a $< -o $@
|
|
|
|
init.o: ../../../support/init.c
|
|
$(COMPILE.c) -DNODE_NUMBER=2 -I$(srcdir)/.. -c $<
|
|
|
|
scndir = $(rtems_ada_testsdir)
|
|
dist_scn_DATA = ada_base_mp-node2.scn
|
|
|
|
include $(top_srcdir)/../automake/local.am
|