source: rtems-schedsim/schedsim/configure.ac @ abb18dc

base initial
Last change on this file since abb18dc was abb18dc, checked in by Joel Sherrill <joel.sherrill@…>, on 04/25/11 at 15:53:10

Initial import.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ([2.68])
6AC_INIT([rtems-tools-schedsim],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
7AC_CONFIG_SRCDIR([rtems])
8RTEMS_TOP(..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE([no-define foreign 1.11.1])
13AM_MAINTAINER_MODE
14
15AC_PROG_RANLIB
16# FIXME: Hack to enforce gnu99 on systems with GCC which do not default to gnu99
17AC_PROG_CC_C99
18AC_PROG_CXX
19# FIXME: Should abort if c99 or c++ are not available.
20# FIXME: Should abort on systems without GCC.
21
22# FIXME: This package is not a tool, it's a separate, hacked up RTEMS port
23RTEMS_TOOLPATHS
24
25RTEMS_ENABLE_RTEMSDIR
26if test X"${rtems_srcdir}" = "X" ; then
27  AC_MSG_ERROR([RTEMS Source Directory Not Specified])
28fi
29if test ! -d ${rtems_srcdir}; then
30  AC_MSG_ERROR([RTEMS Source Directory ${rtems_srcdir} Does Not Exist])
31fi
32if test ! -d ${rtems_srcdir}/cpukit; then
33  AC_MSG_ERROR([RTEMS Source Directory ${rtems_srcdir}/cpukit Does Not Exist])
34fi
35
36AC_SUBST(rtems_srcdir)
37
38AC_SUBST(program_prefix)
39
40# Explicitly list all Makefiles here
41AC_CONFIG_FILES([
42Makefile
43rtems/Makefile
44shell/Makefile
45shell/shared/Makefile
46shell/schedsim_priority/Makefile
47])
48AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.