forked from Imagelibrary/rtems
2002-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Eliminate *_O_FILES. Use install-data-local instead of bsplist_DATA. * configure.ac: Require autoconf-2.57/automake-1.7.2. Apply 4th arg to AC_INIT to prevent autoconf to corrupt package name.
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2002-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* Makefile.am: Eliminate *_O_FILES.
|
||||
Use install-data-local instead of bsplist_DATA.
|
||||
* configure.ac: Require autoconf-2.57/automake-1.7.2.
|
||||
Apply 4th arg to AC_INIT to prevent autoconf to corrupt package name.
|
||||
|
||||
2002-12-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* src/Makefile.am: Remove.
|
||||
|
||||
@@ -30,14 +30,13 @@ LIB = ${ARCH}/librtems++.a
|
||||
|
||||
CC_FILES = src/rtemsEvent.cc src/rtemsInterrupt.cc src/rtemsMessageQueue.cc \
|
||||
src/rtemsSemaphore.cc src/rtemsStatusCode.cc src/rtemsTask.cc src/rtemsTimer.cc
|
||||
CC_O_FILES = $(CC_FILES:src/%.cc=${ARCH}/%.$(OBJEXT))
|
||||
|
||||
SRCS = $(CC_FILES)
|
||||
OBJS = $(CC_O_FILES)
|
||||
OBJS = $(CC_FILES:src/%.cc=${ARCH}/%.$(OBJEXT))
|
||||
|
||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/librtems++$(LIB_VARIANT).a
|
||||
|
||||
bsplib_DATA = $(LIB)
|
||||
install-data-local: $(LIB)
|
||||
@$(mkinstalldirs) $(DESTDIR)$(bsplibdir)
|
||||
$(INSTALL_DATA) $(LIB) $(DESTDIR)$(bsplibdir)
|
||||
|
||||
${ARCH}/%.o: src/%.cc
|
||||
test -d $(ARCH) || mkdir $(ARCH)
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
##
|
||||
## $Id$
|
||||
|
||||
AC_PREREQ(2.52)
|
||||
AC_INIT([rtems-c-src-librtems++],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([rtems-c-src-librtems++],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com],[rtems-c-src-librtems++])
|
||||
AC_CONFIG_SRCDIR([include/rtems++])
|
||||
RTEMS_TOP(../../..)
|
||||
AC_CONFIG_AUX_DIR(../../..)
|
||||
@@ -11,14 +11,13 @@ AC_CONFIG_AUX_DIR(../../..)
|
||||
RTEMS_CANONICAL_TARGET_CPU
|
||||
RTEMS_CANONICAL_HOST
|
||||
|
||||
AM_INIT_AUTOMAKE([no-define foreign 1.6])
|
||||
AM_INIT_AUTOMAKE([no-define foreign 1.7.2])
|
||||
AM_MAINTAINER_MODE
|
||||
|
||||
RTEMS_ENABLE_CXX
|
||||
|
||||
RTEMS_ENV_RTEMSBSP
|
||||
RTEMS_CHECK_CPU
|
||||
RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
|
||||
|
||||
RTEMS_CHECK_CXX(RTEMS_BSP)
|
||||
## check for g++
|
||||
|
||||
Reference in New Issue
Block a user