2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* configure.ac: Remove (Merged-in into ../configure.ac)
	* Makefile.am, src/Makefile.am, src/dosfs/Makefile.am,
	src/imfs/Makefile.am: Reflect having merged configure.ac into
	../configure.ac.
	* src/dosfs/config.h: New.
	* src/dosfs/Makefile.am: Add config.h.
	* src/imfsfs/config.h: New.
	* src/imfs/Makefile.am: Add config.h.
	Remove COMMON_C_FILES, DOC_FILES (Unused).
This commit is contained in:
Ralf Corsepius
2003-07-08 09:47:21 +00:00
parent ffc144e6c0
commit c41c8b78b5
8 changed files with 43 additions and 58 deletions
+12
View File
@@ -1,3 +1,15 @@
2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Remove (Merged-in into ../configure.ac)
* Makefile.am, src/Makefile.am, src/dosfs/Makefile.am,
src/imfs/Makefile.am: Reflect having merged configure.ac into
../configure.ac.
* src/dosfs/config.h: New.
* src/dosfs/Makefile.am: Add config.h.
* src/imfsfs/config.h: New.
* src/imfs/Makefile.am: Add config.h.
Remove COMMON_C_FILES, DOC_FILES (Unused).
2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/dosfs/fat.c: include config-header "config.h".
+2 -4
View File
@@ -2,11 +2,9 @@
## $Id$
##
ACLOCAL_AMFLAGS = -I ../aclocal
SUBDIRS = src
EXTRA_DIST = README
include $(top_srcdir)/../automake/subdirs.am
include $(top_srcdir)/../automake/local.am
include $(top_srcdir)/automake/subdirs.am
include $(top_srcdir)/automake/local.am
-34
View File
@@ -1,34 +0,0 @@
## Process this file with autoconf to produce a configure script.
##
## $Id$
AC_PREREQ(2.57)
AC_INIT([rtems-cpukit-libfs],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
AC_CONFIG_SRCDIR([src/imfs/imfs.h])
RTEMS_TOP(../..)
RTEMS_CANONICAL_TARGET_CPU
AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.7.2])
AM_MAINTAINER_MODE
RTEMS_ENV_RTEMSCPU
RTEMS_CHECK_CPU
RTEMS_CANONICAL_HOST
RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
RTEMS_CANONICALIZE_TOOLS
AC_PROG_RANLIB
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
])
AC_OUTPUT
+2 -2
View File
@@ -5,5 +5,5 @@
SUBDIRS = imfs dosfs
include $(top_srcdir)/../automake/subdirs.am
include $(top_srcdir)/../automake/local.am
include $(top_srcdir)/automake/subdirs.am
include $(top_srcdir)/automake/local.am
+7 -5
View File
@@ -3,11 +3,13 @@
##
include $(top_srcdir)/../automake/multilib.am
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/lib.am
include $(top_srcdir)/automake/multilib.am
include $(top_srcdir)/automake/compile.am
include $(top_srcdir)/automake/lib.am
AM_CPPFLAGS += -I../.. $(LIBC_DEFINES)
noinst_HEADERS = config.h
AM_CPPFLAGS += $(LIBC_DEFINES)
FATFS_C_FILES = fat.c fat_fat_operations.c fat_file.c
@@ -50,4 +52,4 @@ TMPINSTALL_FILES += $(H_FILES)
EXTRA_DIST = $(DOSFS_C_FILES) $(FATFS_C_FILES)
include $(top_srcdir)/../automake/local.am
include $(top_srcdir)/automake/local.am
+5
View File
@@ -0,0 +1,5 @@
/* HACK:
* Pull-in RTEMS global config-header cpuopts.h as local config.h
*/
#include <rtems/score/cpuopts.h>
+10 -13
View File
@@ -19,22 +19,22 @@ UNIX_C_FILES = imfs_unixstub.c
EMBEDDED_C_FILES = $(IMFS_C_FILES)
COMMON_C_FILES =
if UNIX
C_FILES = $(COMMON_C_FILES) $(UNIX_C_FILES)
C_FILES = $(UNIX_C_FILES)
else
C_FILES = $(COMMON_C_FILES) $(EMBEDDED_C_FILES)
C_FILES = $(EMBEDDED_C_FILES)
endif
OBJS = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
noinst_HEADERS = config.h
include_HEADERS = imfs.h
include $(top_srcdir)/../automake/multilib.am
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/lib.am
include $(top_srcdir)/automake/multilib.am
include $(top_srcdir)/automake/compile.am
include $(top_srcdir)/automake/lib.am
AM_CPPFLAGS += -I../.. $(LIBC_DEFINES)
AM_CPPFLAGS += $(LIBC_DEFINES)
PREINSTALL_FILES = $(PROJECT_INCLUDE) \
$(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
@@ -54,9 +54,6 @@ all-local: ${ARCH} $(LIB)
$(LIB): ${OBJS}
$(make-library)
DOC_FILES = TODO CASES
EXTRA_DIST = $(EMBEDDED_C_FILES) $(UNIX_C_FILES)
EXTRA_DIST = $(DOC_FILES) $(COMMON_C_FILES) $(EMBEDDED_C_FILES) \
$(UNIX_C_FILES)
include $(top_srcdir)/../automake/local.am
include $(top_srcdir)/automake/local.am
+5
View File
@@ -0,0 +1,5 @@
/* HACK:
* Pull-in RTEMS global config-header cpuopts.h as local config.h
*/
#include <rtems/score/cpuopts.h>