mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-29 07:50:18 +00:00
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../.. .
40 lines
674 B
Plaintext
40 lines
674 B
Plaintext
## Process this file with autoconf to produce a configure script.
|
|
##
|
|
## $Id$
|
|
|
|
AC_PREREQ(2.52)
|
|
AC_INIT
|
|
AC_CONFIG_SRCDIR([src/imfs/imfs.h])
|
|
|
|
RTEMS_TOP(../../..)
|
|
AC_CONFIG_AUX_DIR(../../..)
|
|
|
|
RTEMS_CANONICAL_TARGET_CPU
|
|
|
|
AM_INIT_AUTOMAKE(rtems-c-src-libfs,$RTEMS_VERSION,no)
|
|
AM_MAINTAINER_MODE
|
|
|
|
RTEMS_ENABLE_BARE
|
|
|
|
RTEMS_ENV_RTEMSBSP
|
|
|
|
RTEMS_CHECK_CPU
|
|
RTEMS_CANONICAL_HOST
|
|
|
|
RTEMS_PROJECT_ROOT
|
|
|
|
RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
|
|
RTEMS_CANONICALIZE_TOOLS
|
|
|
|
AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix")
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
# Explicitly list all Makefiles here
|
|
AC_CONFIG_FILES([Makefile
|
|
src/Makefile
|
|
src/imfs/Makefile
|
|
src/dosfs/Makefile
|
|
wrapup/Makefile
|
|
])
|
|
AC_OUTPUT
|