mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-10 01:23:22 +00:00
* configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]). * cpuuse/Makefile.am: Remove AUTOMAKE_OPTIONS. * Makefile.am: Remove AUTOMAKE_OPTIONS. * malloctest/Makefile.am: Remove AUTOMAKE_OPTIONS. * monitor/Makefile.am: Remove AUTOMAKE_OPTIONS. * putenvtest/Makefile.am: Remove AUTOMAKE_OPTIONS. * rtems++/Makefile.am: Remove AUTOMAKE_OPTIONS. * rtmonuse/Makefile.am: Remove AUTOMAKE_OPTIONS. * stackchk/Makefile.am: Remove AUTOMAKE_OPTIONS. * termios/Makefile.am: Remove AUTOMAKE_OPTIONS.
50 lines
866 B
Makefile
50 lines
866 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
TEST = rtems++
|
|
|
|
MANAGERS = event io msg sem signal timer rate_monotonic
|
|
|
|
CC_FILES = Init.cc Task1.cc Task2.cc Task3.cc
|
|
CC_O_FILES = $(CC_FILES:%.cc=${ARCH}/%.o)
|
|
|
|
H_FILES = System.h
|
|
noinst_HEADERS = $(H_FILES)
|
|
|
|
DOCTYPES = scn doc
|
|
DOCS = $(DOCTYPES:%=$(TEST).%)
|
|
|
|
SRCS = $(DOCS) $(C_FILES) $(H_FILES)
|
|
OBJS = $(CC_O_FILES)
|
|
|
|
PRINT_SRCS = $(DOCS)
|
|
|
|
PGM = ${ARCH}/$(TEST).exe
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../../../../automake/compile.am
|
|
include $(top_srcdir)/../../../../automake/leaf.am
|
|
include $(top_srcdir)/libtests.am
|
|
|
|
#
|
|
# (OPTIONAL) Add local stuff here using +=
|
|
#
|
|
|
|
LD_LIBS = -lrtems++$(LIB_VARIANT)
|
|
|
|
if HAS_CXX
|
|
|
|
${PGM}: $(OBJS) $(LINK_FILES)
|
|
$(make-cxx-exe)
|
|
|
|
all-local: $(ARCH) $(TMPINSTALL_FILES)
|
|
else
|
|
all-local:
|
|
endif
|
|
|
|
EXTRA_DIST = $(CC_FILES) $(DOCS)
|
|
|
|
include $(top_srcdir)/../../../../automake/local.am
|