source: rtems/cpukit/libfs/configure.ac @ 657af74

4.104.114.84.95
Last change on this file since 657af74 was c31deeb, checked in by Joel Sherrill <joel.sherrill@…>, on 03/20/02 at 14:21:42

2002-03-16 Ralf Corsepius <corsepiu@…>

Addressing PR 140.

  • src/dosfs/config.h.in: Removed.
  • src/dosfs/stamp-h2.in: Removed.
  • .cvsignore: Add config.h*, stamp-h*.
  • configure.ac: Remove AC_SRC_DIR(.../dosfs.h). Remove AM_CONFIG_HEADER(src/dosfs/config.h). Remove AM_CONFIG_HEADER(src/imfs/config.h). Add AM_CONFIG_HEADER(config.h).
  • src/dosfs/Makefile.am: INCLUDES = -I../.. .
  • src/imfs/Makefile.am: INCLUDES = -I../.. .
  • Property mode set to 100644
File size: 674 bytes
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
6AC_INIT
7AC_CONFIG_SRCDIR([src/imfs/imfs.h])
8
9RTEMS_TOP(../../..)
10AC_CONFIG_AUX_DIR(../../..)
11
12RTEMS_CANONICAL_TARGET_CPU
13
14AM_INIT_AUTOMAKE(rtems-c-src-libfs,$RTEMS_VERSION,no)
15AM_MAINTAINER_MODE
16
17RTEMS_ENABLE_BARE
18
19RTEMS_ENV_RTEMSBSP
20
21RTEMS_CHECK_CPU
22RTEMS_CANONICAL_HOST
23
24RTEMS_PROJECT_ROOT
25
26RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
27RTEMS_CANONICALIZE_TOOLS
28
29AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix")
30AM_CONFIG_HEADER(config.h)
31
32# Explicitly list all Makefiles here
33AC_CONFIG_FILES([Makefile
34src/Makefile
35src/imfs/Makefile
36src/dosfs/Makefile
37wrapup/Makefile
38])
39AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.