forked from Imagelibrary/rtems
* configure.ac: New port to Altera NIOS II. * nios2/.cvsignore, nios2/Makefile.am, nios2/README, nios2/bridges.c, nios2/bridges.h, nios2/clocks.c, nios2/clocks.h, nios2/configure.ac, nios2/devices.c, nios2/devices.h, nios2/nios2gen.c, nios2/output.c, nios2/output.h, nios2/ptf.c, nios2/ptf.h: New files.
29 lines
549 B
Plaintext
29 lines
549 B
Plaintext
## Process this file with autoconf to produce a configure script.
|
|
##
|
|
## $Id$
|
|
|
|
AC_PREREQ(2.59)
|
|
AC_INIT([rtems-tools-cpu],[_RTEMS_VERSION],[rtems-bugs@rtems.com])
|
|
AC_CONFIG_SRCDIR([generic])
|
|
RTEMS_TOP(../..)
|
|
|
|
RTEMS_CANONICAL_TARGET_CPU
|
|
|
|
AM_INIT_AUTOMAKE([no-define foreign 1.9])
|
|
AM_MAINTAINER_MODE
|
|
|
|
RTEMS_PATH_KSH
|
|
|
|
RTEMS_TOOLPATHS
|
|
AC_SUBST(program_prefix)
|
|
|
|
AC_CONFIG_SUBDIRS(generic)
|
|
case "$RTEMS_CPU" in
|
|
sh ) AC_CONFIG_SUBDIRS(sh);;
|
|
nios2 ) AC_CONFIG_SUBDIRS(nios2);;
|
|
esac
|
|
|
|
# Explicitly list all Makefiles here
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT
|