forked from Imagelibrary/rtems
Partial conversion to automake.
This commit is contained in:
@@ -6,24 +6,21 @@ TEST = cpuuse
|
|||||||
|
|
||||||
MANAGERS = io rate_monotonic
|
MANAGERS = io rate_monotonic
|
||||||
|
|
||||||
C_FILES = init.c task1.c task2.c task3.c tswitch.c
|
noinst_LIBRARIES = lib.a
|
||||||
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
|
lib_a_SOURCES = init.c task1.c task2.c task3.c tswitch.c system.h
|
||||||
|
|
||||||
H_FILES = system.h
|
|
||||||
noinst_HEADERS = $(H_FILES)
|
|
||||||
|
|
||||||
DOCTYPES = scn
|
DOCTYPES = scn
|
||||||
DOCS = $(DOCTYPES:%=$(TEST).%)
|
DOCS = $(DOCTYPES:%=$(TEST).%)
|
||||||
|
|
||||||
SRCS = $(DOCS) $(C_FILES) $(H_FILES)
|
SRCS = $(DOCS)
|
||||||
OBJS = $(C_O_FILES)
|
OBJS = $(lib_a_OBJECTS)
|
||||||
|
|
||||||
PRINT_SRCS = $(DOCS)
|
PRINT_SRCS = $(DOCS)
|
||||||
|
|
||||||
PGM = ${ARCH}/$(TEST).exe
|
PGM = ${ARCH}/$(TEST).exe
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
include $(top_srcdir)/../automake/compile.am
|
include $(top_srcdir)/../automake/amcompile.am
|
||||||
include $(top_srcdir)/../automake/leaf.am
|
include $(top_srcdir)/../automake/leaf.am
|
||||||
include $(top_srcdir)/libtests.am
|
include $(top_srcdir)/libtests.am
|
||||||
|
|
||||||
@@ -36,7 +33,7 @@ ${PGM}: $(OBJS) $(LINK_FILES)
|
|||||||
|
|
||||||
all-local: $(TMPINSTALL_FILES)
|
all-local: $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
EXTRA_DIST = $(C_FILES) $(DOCS)
|
EXTRA_DIST = $(DOCS)
|
||||||
|
|
||||||
CLEANFILES = $(TMPINSTALL_FILES)
|
CLEANFILES = $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
|
|||||||
@@ -6,24 +6,21 @@ TEST = malloctest
|
|||||||
|
|
||||||
MANAGERS = io
|
MANAGERS = io
|
||||||
|
|
||||||
C_FILES = init.c task1.c
|
noinst_LIBRARIES = lib.a
|
||||||
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
|
lib_a_SOURCES = init.c task1.c system.h
|
||||||
|
|
||||||
H_FILES = system.h
|
|
||||||
noinst_HEADERS = $(H_FILES)
|
|
||||||
|
|
||||||
DOCTYPES = scn
|
DOCTYPES = scn
|
||||||
DOCS = $(DOCTYPES:%=$(TEST).%)
|
DOCS = $(DOCTYPES:%=$(TEST).%)
|
||||||
|
|
||||||
SRCS = $(DOCS) $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
|
SRCS = $(DOCS)
|
||||||
OBJS = $(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
|
OBJS = $(lib_a_OBJECTS)
|
||||||
|
|
||||||
PRINT_SRCS = $(DOCS)
|
PRINT_SRCS = $(DOCS)
|
||||||
|
|
||||||
PGM = ${ARCH}/$(TEST).exe
|
PGM = ${ARCH}/$(TEST).exe
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
include $(top_srcdir)/../automake/compile.am
|
include $(top_srcdir)/../automake/amcompile.am
|
||||||
include $(top_srcdir)/../automake/leaf.am
|
include $(top_srcdir)/../automake/leaf.am
|
||||||
include $(top_srcdir)/libtests.am
|
include $(top_srcdir)/libtests.am
|
||||||
|
|
||||||
@@ -36,7 +33,7 @@ ${PGM}: $(OBJS) $(LINK_FILES)
|
|||||||
|
|
||||||
all-local: $(TMPINSTALL_FILES)
|
all-local: $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
EXTRA_DIST = $(C_FILES) $(DOCS)
|
EXTRA_DIST = $(DOCS)
|
||||||
|
|
||||||
CLEANFILES = $(TMPINSTALL_FILES)
|
CLEANFILES = $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
|
|||||||
@@ -7,24 +7,21 @@ TEST = monitor
|
|||||||
MANAGERS = dpmem event io msg mp part region sem signal timer rate_monotonic \
|
MANAGERS = dpmem event io msg mp part region sem signal timer rate_monotonic \
|
||||||
ext
|
ext
|
||||||
|
|
||||||
C_FILES = init.c
|
noinst_LIBRARIES = lib.a
|
||||||
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
|
lib_a_SOURCES = init.c system.h
|
||||||
|
|
||||||
H_FILES = system.h
|
|
||||||
noinst_HEADERS = $(H_FILES)
|
|
||||||
|
|
||||||
DOCTYPES = scn
|
DOCTYPES = scn
|
||||||
DOCS = #$(DOCTYPES:%=$(TEST).%)
|
DOCS = #$(DOCTYPES:%=$(TEST).%)
|
||||||
|
|
||||||
SRCS = $(DOCS) $(C_FILES) $(H_FILES)
|
SRCS = $(DOCS)
|
||||||
OBJS = $(C_O_FILES)
|
OBJS = $(lib_a_OBJECTS)
|
||||||
|
|
||||||
PRINT_SRCS = $(DOCS)
|
PRINT_SRCS = $(DOCS)
|
||||||
|
|
||||||
PGM = ${ARCH}/$(TEST).exe
|
PGM = ${ARCH}/$(TEST).exe
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
include $(top_srcdir)/../automake/compile.am
|
include $(top_srcdir)/../automake/amcompile.am
|
||||||
include $(top_srcdir)/../automake/leaf.am
|
include $(top_srcdir)/../automake/leaf.am
|
||||||
include $(top_srcdir)/libtests.am
|
include $(top_srcdir)/libtests.am
|
||||||
|
|
||||||
@@ -37,7 +34,7 @@ ${PGM}: $(OBJS) $(LINK_FILES)
|
|||||||
|
|
||||||
all-local: $(TMPINSTALL_FILES)
|
all-local: $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
EXTRA_DIST = $(C_FILES) $(DOCS)
|
EXTRA_DIST = $(DOCS)
|
||||||
|
|
||||||
CLEANFILES = $(TMPINSTALL_FILES)
|
CLEANFILES = $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
|
|||||||
@@ -6,24 +6,21 @@ TEST = putenvtest
|
|||||||
|
|
||||||
MANAGERS = io
|
MANAGERS = io
|
||||||
|
|
||||||
C_FILES = init.c
|
noinst_LIBRARIES = lib.a
|
||||||
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
|
lib_a_SOURCES = init.c
|
||||||
|
|
||||||
H_FILES =
|
|
||||||
noinst_HEADERS = $(H_FILES)
|
|
||||||
|
|
||||||
DOCTYPES =
|
DOCTYPES =
|
||||||
DOCS = $(DOCTYPES:%=$(TEST).%)
|
DOCS = $(DOCTYPES:%=$(TEST).%)
|
||||||
|
|
||||||
SRCS = $(DOCS) $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
|
SRCS = $(DOCS)
|
||||||
OBJS = $(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
|
OBJS = $(lib_a_OBJECTS)
|
||||||
|
|
||||||
PRINT_SRCS = $(DOCS)
|
PRINT_SRCS = $(DOCS)
|
||||||
|
|
||||||
PGM = ${ARCH}/$(TEST).exe
|
PGM = ${ARCH}/$(TEST).exe
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
include $(top_srcdir)/../automake/compile.am
|
include $(top_srcdir)/../automake/amcompile.am
|
||||||
include $(top_srcdir)/../automake/leaf.am
|
include $(top_srcdir)/../automake/leaf.am
|
||||||
include $(top_srcdir)/libtests.am
|
include $(top_srcdir)/libtests.am
|
||||||
|
|
||||||
@@ -36,7 +33,7 @@ ${PGM}: $(OBJS) $(LINK_FILES)
|
|||||||
|
|
||||||
all-local: $(TMPINSTALL_FILES)
|
all-local: $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
EXTRA_DIST = $(C_FILES) $(DOCS)
|
EXTRA_DIST = $(DOCS)
|
||||||
|
|
||||||
CLEANFILES = $(TMPINSTALL_FILES)
|
CLEANFILES = $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
|
|||||||
@@ -6,23 +6,22 @@ TEST = rtems++
|
|||||||
|
|
||||||
MANAGERS = event io msg sem signal timer rate_monotonic
|
MANAGERS = event io msg sem signal timer rate_monotonic
|
||||||
|
|
||||||
CC_FILES = Init.cc Task1.cc Task2.cc Task3.cc
|
if HAS_CXX
|
||||||
OBJS = $(CC_FILES:%.cc=${ARCH}/%.$(OBJEXT))
|
noinst_LIBRARIES = lib.a
|
||||||
|
lib_a_SOURCES = Init.cc Task1.cc Task2.cc Task3.cc System.h
|
||||||
H_FILES = System.h
|
endif
|
||||||
noinst_HEADERS = $(H_FILES)
|
|
||||||
|
|
||||||
DOCTYPES = scn doc
|
DOCTYPES = scn doc
|
||||||
DOCS = $(DOCTYPES:%=$(TEST).%)
|
DOCS = $(DOCTYPES:%=$(TEST).%)
|
||||||
|
|
||||||
SRCS = $(DOCS) $(C_FILES) $(H_FILES)
|
SRCS = $(DOCS)
|
||||||
|
|
||||||
PRINT_SRCS = $(DOCS)
|
PRINT_SRCS = $(DOCS)
|
||||||
|
|
||||||
PGM = ${ARCH}/$(TEST).exe
|
PGM = ${ARCH}/$(TEST).exe
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
include $(top_srcdir)/../automake/compile.am
|
include $(top_srcdir)/../automake/amcompile.am
|
||||||
include $(top_srcdir)/../automake/leaf.am
|
include $(top_srcdir)/../automake/leaf.am
|
||||||
include $(top_srcdir)/libtests.am
|
include $(top_srcdir)/libtests.am
|
||||||
|
|
||||||
@@ -42,7 +41,7 @@ else
|
|||||||
all-local:
|
all-local:
|
||||||
endif
|
endif
|
||||||
|
|
||||||
EXTRA_DIST = $(CC_FILES) $(DOCS)
|
EXTRA_DIST = $(DOCS)
|
||||||
|
|
||||||
CLEANFILES = $(TMPINSTALL_FILES)
|
CLEANFILES = $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
|
|||||||
@@ -6,24 +6,21 @@ TEST = rtmonuse
|
|||||||
|
|
||||||
MANAGERS = io rate_monotonic
|
MANAGERS = io rate_monotonic
|
||||||
|
|
||||||
C_FILES = init.c getall.c task1.c
|
noinst_LIBRARIES = lib.a
|
||||||
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
|
lib_a_SOURCES = init.c getall.c task1.c system.h
|
||||||
|
|
||||||
H_FILES = system.h
|
|
||||||
noinst_HEADERS = $(H_FILES)
|
|
||||||
|
|
||||||
DOCTYPES = scn
|
DOCTYPES = scn
|
||||||
DOCS = $(DOCTYPES:%=$(TEST).%)
|
DOCS = $(DOCTYPES:%=$(TEST).%)
|
||||||
|
|
||||||
SRCS = $(DOCS) $(C_FILES) $(H_FILES)
|
SRCS = $(DOCS)
|
||||||
OBJS = $(C_O_FILES)
|
OBJS = $(lib_a_OBJECTS)
|
||||||
|
|
||||||
PRINT_SRCS = $(DOCS)
|
PRINT_SRCS = $(DOCS)
|
||||||
|
|
||||||
PGM = ${ARCH}/$(TEST).exe
|
PGM = ${ARCH}/$(TEST).exe
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
include $(top_srcdir)/../automake/compile.am
|
include $(top_srcdir)/../automake/amcompile.am
|
||||||
include $(top_srcdir)/../automake/leaf.am
|
include $(top_srcdir)/../automake/leaf.am
|
||||||
include $(top_srcdir)/libtests.am
|
include $(top_srcdir)/libtests.am
|
||||||
|
|
||||||
@@ -36,7 +33,7 @@ ${PGM}: $(OBJS) $(LINK_FILES)
|
|||||||
|
|
||||||
all-local: $(TMPINSTALL_FILES)
|
all-local: $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
EXTRA_DIST = $(C_FILES) $(DOCS)
|
EXTRA_DIST = $(DOCS)
|
||||||
|
|
||||||
CLEANFILES = $(TMPINSTALL_FILES)
|
CLEANFILES = $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
|
|||||||
@@ -6,24 +6,21 @@ TEST = stackchk
|
|||||||
|
|
||||||
MANAGERS = io
|
MANAGERS = io
|
||||||
|
|
||||||
C_FILES = blow.c init.c task1.c
|
noinst_LIBRARIES = lib.a
|
||||||
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
|
lib_a_SOURCES = blow.c init.c task1.c system.h
|
||||||
|
|
||||||
H_FILES = system.h
|
|
||||||
noinst_HEADERS = $(H_FILES)
|
|
||||||
|
|
||||||
DOCTYPES = scn
|
DOCTYPES = scn
|
||||||
DOCS = $(DOCTYPES:%=$(TEST).%)
|
DOCS = $(DOCTYPES:%=$(TEST).%)
|
||||||
|
|
||||||
SRCS = $(DOCS) $(C_FILES) $(H_FILES)
|
SRCS = $(DOCS)
|
||||||
OBJS = $(C_O_FILES)
|
OBJS = $(lib_a_OBJECTS)
|
||||||
|
|
||||||
PRINT_SRCS = $(DOCS)
|
PRINT_SRCS = $(DOCS)
|
||||||
|
|
||||||
PGM = ${ARCH}/$(TEST).exe
|
PGM = ${ARCH}/$(TEST).exe
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
include $(top_srcdir)/../automake/compile.am
|
include $(top_srcdir)/../automake/amcompile.am
|
||||||
include $(top_srcdir)/../automake/leaf.am
|
include $(top_srcdir)/../automake/leaf.am
|
||||||
include $(top_srcdir)/libtests.am
|
include $(top_srcdir)/libtests.am
|
||||||
|
|
||||||
@@ -36,7 +33,7 @@ ${PGM}: $(OBJS) $(LINK_FILES)
|
|||||||
|
|
||||||
all-local: $(TMPINSTALL_FILES)
|
all-local: $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
EXTRA_DIST = $(C_FILES) $(DOCS)
|
EXTRA_DIST = $(DOCS)
|
||||||
|
|
||||||
CLEANFILES = $(TMPINSTALL_FILES)
|
CLEANFILES = $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
|
|||||||
@@ -6,24 +6,21 @@ TEST = termios
|
|||||||
|
|
||||||
MANAGERS = io
|
MANAGERS = io
|
||||||
|
|
||||||
C_FILES = init.c
|
noinst_LIBRARIES = lib.a
|
||||||
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
|
lib_a_SOURCES = init.c
|
||||||
|
|
||||||
H_FILES =
|
|
||||||
noinst_HEADERS = $(H_FILES)
|
|
||||||
|
|
||||||
DOCTYPES =
|
DOCTYPES =
|
||||||
DOCS = $(DOCTYPES:%=$(TEST).%)
|
DOCS = $(DOCTYPES:%=$(TEST).%)
|
||||||
|
|
||||||
SRCS = $(DOCS) $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
|
SRCS = $(DOCS)
|
||||||
OBJS = $(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
|
OBJS = $(lib_a_OBJECTS)
|
||||||
|
|
||||||
PRINT_SRCS = $(DOCS)
|
PRINT_SRCS = $(DOCS)
|
||||||
|
|
||||||
PGM = ${ARCH}/$(TEST).exe
|
PGM = ${ARCH}/$(TEST).exe
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
include $(top_srcdir)/../automake/compile.am
|
include $(top_srcdir)/../automake/amcompile.am
|
||||||
include $(top_srcdir)/../automake/leaf.am
|
include $(top_srcdir)/../automake/leaf.am
|
||||||
include $(top_srcdir)/libtests.am
|
include $(top_srcdir)/libtests.am
|
||||||
|
|
||||||
@@ -36,7 +33,7 @@ ${PGM}: $(OBJS) $(LINK_FILES)
|
|||||||
|
|
||||||
all-local: $(TMPINSTALL_FILES)
|
all-local: $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
EXTRA_DIST = $(C_FILES) $(DOCS)
|
EXTRA_DIST = $(DOCS)
|
||||||
|
|
||||||
CLEANFILES = $(TMPINSTALL_FILES)
|
CLEANFILES = $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user