summaryrefslogtreecommitdiffstats
path: root/cpukit/ada
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-08-23 13:52:42 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-08-23 13:52:42 +0000
commit72deed07461bb1c6cdb03549195cf1581c4e1b2c (patch)
treec034e9fea33d3d5ad2b2df984b0194453e70147c /cpukit/ada
parent2002-08-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-72deed07461bb1c6cdb03549195cf1581c4e1b2c.tar.bz2
2001-08-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: New. * Makefile.am: New. * .cvsignore: New.
Diffstat (limited to 'cpukit/ada')
-rw-r--r--cpukit/ada/.cvsignore14
-rw-r--r--cpukit/ada/ChangeLog6
-rw-r--r--cpukit/ada/Makefile.am20
-rw-r--r--cpukit/ada/configure.ac28
4 files changed, 68 insertions, 0 deletions
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 <corsepiu@faw.uni-ulm.de>
+
+ * configure.ac: New.
+ * Makefile.am: New.
+ * .cvsignore: New.
+
2001-02-01 Joel Sherrill <joel@OARcorp.com>
* 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