2000-10-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* ChangeLog: New file.
	* Makefile.am: Switch to GNU-canonicalized autoconf macros.
	* configure.in: New file.
	* .cvsignore: Add aclocal.m4, configure.
This commit is contained in:
Joel Sherrill
2000-10-31 21:12:59 +00:00
parent 06f2f75419
commit a2967717fe
4 changed files with 53 additions and 3 deletions

View File

@@ -1,2 +1,4 @@
aclocal.m4
configure
Makefile
Makefile.in

6
c/src/wrapup/ChangeLog Normal file
View File

@@ -0,0 +1,6 @@
2000-10-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* ChangeLog: New file.
* Makefile.am: Switch to GNU-canonicalized autoconf macros.
* configure.in: New file.
* .cvsignore: Add aclocal.m4, configure.

View File

@@ -5,10 +5,11 @@
##
AUTOMAKE_OPTIONS = foreign 1.4
ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/macros
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../automake/compile.am
include $(top_srcdir)/../../automake/lib.am
include $(top_srcdir)/../../../automake/compile.am
include $(top_srcdir)/../../../automake/lib.am
LIB = $(PROJECT_RELEASE)/lib/librtemsall${LIB_VARIANT}.a
@@ -70,4 +71,4 @@ $(LIB): $(SRCS)
rm -f $(ARCH)/*
$(RANLIB) $@
include $(top_srcdir)/../../automake/local.am
include $(top_srcdir)/../../../automake/local.am

41
c/src/wrapup/configure.in Normal file
View File

@@ -0,0 +1,41 @@
dnl Process this file with autoconf to produce a configure script.
dnl
dnl $Id$
AC_PREREQ(2.13)
AC_INIT(../exec)
RTEMS_TOP(../../..)
AC_CONFIG_AUX_DIR(../../..)
RTEMS_ENABLE_NETWORKING
RTEMS_ENABLE_RDBG
RTEMS_CANONICAL_TARGET_CPU
RTEMS_CANONICAL_HOST
AM_INIT_AUTOMAKE(rtems-c-src-wrapup,$RTEMS_VERSION,no)
AM_MAINTAINER_MODE
RTEMS_ENABLE_MULTILIB
RTEMS_ENV_RTEMSBSP
RTEMS_CHECK_CPU
RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
RTEMS_CHECK_NETWORKING(RTEMS_BSP)
if test "$HAS_NETWORKING" = "yes"; then
if test "$RTEMS_HAS_RDBG" = "yes"; then
RTEMS_CHECK_RDBG(RTEMS_BSP)
fi
fi
AM_CONDITIONAL(HAS_NETWORKING, test "$HAS_NETWORKING" = "yes" )
AM_CONDITIONAL(HAS_RDBG, test "$HAS_RDBG" = "yes" )
RTEMS_PROJECT_ROOT
RTEMS_PROG_CC_FOR_TARGET
RTEMS_CANONICALIZE_TOOLS
# Explicitly list all Makefiles here
AC_OUTPUT(
Makefile
)