Partial conversion to automake.

This commit is contained in:
Ralf Corsepius
2005-11-07 08:37:18 +00:00
parent b8056785eb
commit 91de254961
84 changed files with 509 additions and 728 deletions

View File

@@ -2,7 +2,8 @@
## $Id$
##
C_FILES = clock01.c clock02.c clock03.c clock04.c clock05.c clock06.c \
noinst_LIBRARIES = lib.a
lib_a_SOURCES = clock01.c clock02.c clock03.c clock04.c clock05.c clock06.c \
cond01.c cond02.c cond03.c cond04.c cond05.c cond06.c cond07.c cond08.c \
cond09.c cond10.c key01.c key02.c key03.c key04.c mutex01.c mutex02.c \
mutex03.c mutex04.c mutex05.c mutex06.c mutex07.c mutex08.c mutex09.c \
@@ -23,17 +24,16 @@ C_FILES = clock01.c clock02.c clock03.c clock04.c clock05.c clock06.c \
sync03.c time01.c time02.c time03.c time04.c time05.c time06.c time07.c \
time08.c time09.c time10.c time11.c time12.c time13.c timer01.c \
timer02.c timer03.c timer04.c timer05.c timer06.c timer07.c
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
SRCS = $(C_FILES)
OBJS = $(C_O_FILES)
SRCS =
OBJS = $(lib_a_OBJECTS)
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
all-local: ${OBJS}
EXTRA_DIST = $(C_FILES)
EXTRA_DIST =
include $(top_srcdir)/../automake/local.am