forked from Imagelibrary/rtems
* configure.in: Add src/imfs/config.h * src/imfs/Makefile.am: Add INCLUDES += -I. to pickup config.h * src/imfs/.cvsignore: Add config.h and stamp-h * src/imfs/*.c: Add config.h support.
37 lines
614 B
Plaintext
37 lines
614 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
dnl
|
|
dnl $Id$
|
|
|
|
AC_PREREQ(2.13)
|
|
AC_INIT(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
|
|
RTEMS_CANONICALIZE_TOOLS
|
|
|
|
AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix")
|
|
AM_CONFIG_HEADER(src/imfs/config.h)
|
|
|
|
# Explicitly list all Makefiles here
|
|
AC_OUTPUT(
|
|
Makefile
|
|
src/Makefile
|
|
src/imfs/Makefile
|
|
wrapup/Makefile
|
|
)
|