forked from Imagelibrary/rtems
This solves a build dependency issue, e.g. building tests before librtemsbsp.a exists. Close #3079.
20 lines
585 B
Makefile
20 lines
585 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)/..
|
|
|
|
noinst_PROGRAMS = mp10_ada_mp10_node1
|
|
mp10_ada_mp10_node1_SOURCES = mp10_node1.adb ../mptest.adb config.h
|
|
mp10_ada_mp10_node1_SOURCES += ../mptest.ads
|
|
mp10_ada_mp10_node1_SOURCES += ../../../support/init.c
|
|
|
|
mp10_ada_mp10_node1$(EXEEXT): mp10_node1.adb ../mptest.adb init.$(OBJEXT)
|
|
$(GNATCOMPILE) -margs -a $< -o $@
|
|
|
|
scndir = $(rtems_ada_testsdir)
|
|
dist_scn_DATA = ada_mp10-node1.scn
|
|
|
|
include $(top_srcdir)/../automake/local.am
|