mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-01 19:31:57 +08:00
Makefile.am: Reflect having moved automake. itronhello/Makefile.am: Reflect having moved automake. itronmbf01/Makefile.am: Reflect having moved automake. itronmbox01/Makefile.am: Reflect having moved automake. itronsem01/Makefile.am: Reflect having moved automake. itrontask01/Makefile.am: Reflect having moved automake. itrontask02/Makefile.am: Reflect having moved automake. itrontask03/Makefile.am: Reflect having moved automake. itrontask04/Makefile.am: Reflect having moved automake. itrontime01/Makefile.am: Reflect having moved automake.
42 lines
738 B
Makefile
42 lines
738 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
TEST = itrontask03
|
|
PGM = ${ARCH}/$(TEST).exe
|
|
|
|
MANAGERS = all
|
|
|
|
C_FILES = init.c preempt.c task1.c task2.c task3.c
|
|
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
|
|
|
|
H_FILES = system.h
|
|
noinst_HEADERS = $(H_FILES)
|
|
|
|
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)/itrontests.am
|
|
|
|
#
|
|
# (OPTIONAL) Add local stuff here using +=
|
|
#
|
|
|
|
${PGM}: $(OBJS) $(LINK_FILES)
|
|
$(make-exe)
|
|
|
|
all-local: $(ARCH) $(TMPINSTALL_FILES)
|
|
|
|
EXTRA_DIST = $(C_FILES) $(DOCS)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|