From 72deed07461bb1c6cdb03549195cf1581c4e1b2c Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 23 Aug 2002 13:52:42 +0000 Subject: 2001-08-23 Ralf Corsepius * configure.ac: New. * Makefile.am: New. * .cvsignore: New. --- cpukit/ada/.cvsignore | 14 ++++++++++++++ cpukit/ada/ChangeLog | 6 ++++++ cpukit/ada/Makefile.am | 20 ++++++++++++++++++++ cpukit/ada/configure.ac | 28 ++++++++++++++++++++++++++++ 4 files changed, 68 insertions(+) create mode 100644 cpukit/ada/.cvsignore create mode 100644 cpukit/ada/Makefile.am create mode 100644 cpukit/ada/configure.ac (limited to 'cpukit/ada') diff --git a/cpukit/ada/.cvsignore b/cpukit/ada/.cvsignore new file mode 100644 index 0000000000..d29e5050f5 --- /dev/null +++ b/cpukit/ada/.cvsignore @@ -0,0 +1,14 @@ +Makefile +Makefile.in +aclocal.m4 +autom4te.cache +config.cache +config.guess +config.log +config.status +config.sub +configure +depcomp +install-sh +missing +mkinstalldirs diff --git a/cpukit/ada/ChangeLog b/cpukit/ada/ChangeLog index 9f04eef89f..052705b346 100644 --- a/cpukit/ada/ChangeLog +++ b/cpukit/ada/ChangeLog @@ -1,3 +1,9 @@ +2001-08-23 Ralf Corsepius + + * configure.ac: New. + * Makefile.am: New. + * .cvsignore: New. + 2001-02-01 Joel Sherrill * rtems.ads, rtems.adb: Formatting cleaned up. Task based timer diff --git a/cpukit/ada/Makefile.am b/cpukit/ada/Makefile.am new file mode 100644 index 0000000000..5702b5459d --- /dev/null +++ b/cpukit/ada/Makefile.am @@ -0,0 +1,20 @@ +ACLOCAL_AMFLAGS = -I ../aclocal + +$(PROJECT_INCLUDE)/adainclude: + $(mkinstalldirs) $@ +$(PROJECT_INCLUDE)/adainclude/%: % + $(INSTALL_DATA) $< $@ + +adaincludedir = $(includedir)/adainclude + +adainclude_HEADERS = rtems.adb rtems.ads +adainclude_HEADERS += rtems-multiprocessing.adb rtems-multiprocessing.ads + +TMPINSTALL_FILES = \ + $(PROJECT_INCLUDE)/adainclude \ + $(adainclude_HEADERS:%=$(PROJECT_INCLUDE)/adainclude/%) \ + $(nodist_adalib_HEADERS:%=$(PROJECT_INCLUDE)/adainclude/%) + +all-local: $(TMPINSTALL_FILES) + +include $(top_srcdir)/../automake/local.am diff --git a/cpukit/ada/configure.ac b/cpukit/ada/configure.ac new file mode 100644 index 0000000000..9e4c8ad1ff --- /dev/null +++ b/cpukit/ada/configure.ac @@ -0,0 +1,28 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT([rtems-c-src],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com]) +AC_CONFIG_SRCDIR([rtems.adb]) +RTEMS_TOP(../..) +AC_CONFIG_AUX_DIR(../..) + +RTEMS_CANONICAL_TARGET_CPU +RTEMS_CANONICAL_HOST + +AM_INIT_AUTOMAKE([no-define foreign 1.6]) +AM_MAINTAINER_MODE + +RTEMS_ENABLE_MULTILIB +RTEMS_ENABLE_MULTIPROCESSING +RTEMS_ENV_RTEMSCPU +RTEMS_CHECK_CPU + +# FIXME: For the moment, no reason to check for ada +# RTEMS_PROG_GNAT + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile]) + +AC_OUTPUT -- cgit v1.2.3