Changeset c31deeb in rtems
- Timestamp:
- 03/20/02 14:21:42 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- be499b0d
- Parents:
- 7ed57bd
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libfs/.cvsignore
r7ed57bd rc31deeb 13 13 missing 14 14 mkinstalldirs 15 config.h* 16 stamp-h* -
c/src/exec/libfs/ChangeLog
r7ed57bd rc31deeb 1 2002-03-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 Addressing PR 140. 4 * src/dosfs/config.h.in: Removed. 5 * src/dosfs/stamp-h2.in: Removed. 6 * .cvsignore: Add config.h*, stamp-h*. 7 * configure.ac: Remove AC_SRC_DIR(.../dosfs.h). 8 Remove AM_CONFIG_HEADER(src/dosfs/config.h). 9 Remove AM_CONFIG_HEADER(src/imfs/config.h). 10 Add AM_CONFIG_HEADER(config.h). 11 * src/dosfs/Makefile.am: INCLUDES = -I../.. . 12 * src/imfs/Makefile.am: INCLUDES = -I../.. . 13 1 14 2002-03-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 15 -
c/src/exec/libfs/configure.ac
r7ed57bd rc31deeb 6 6 AC_INIT 7 7 AC_CONFIG_SRCDIR([src/imfs/imfs.h]) 8 AC_CONFIG_SRCDIR([src/dosfs/dosfs.h]) 8 9 9 RTEMS_TOP(../../..) 10 10 AC_CONFIG_AUX_DIR(../../..) … … 28 28 29 29 AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix") 30 AM_CONFIG_HEADER(src/imfs/config.h) 31 AM_CONFIG_HEADER(src/dosfs/config.h) 30 AM_CONFIG_HEADER(config.h) 32 31 33 32 # Explicitly list all Makefiles here -
c/src/exec/libfs/src/dosfs/Makefile.am
r7ed57bd rc31deeb 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 INCLUDES = -I. 11 INCLUDES = -I../.. 12 12 13 AM_CFLAGS += $(LIBC_DEFINES) 13 14 -
c/src/exec/libfs/src/imfs/Makefile.am
r7ed57bd rc31deeb 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 INCLUDES = -I. 7 INCLUDES = -I../.. 8 8 9 9 LIBNAME = libimfs -
c/src/libfs/.cvsignore
r7ed57bd rc31deeb 13 13 missing 14 14 mkinstalldirs 15 config.h* 16 stamp-h* -
c/src/libfs/ChangeLog
r7ed57bd rc31deeb 1 2002-03-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 Addressing PR 140. 4 * src/dosfs/config.h.in: Removed. 5 * src/dosfs/stamp-h2.in: Removed. 6 * .cvsignore: Add config.h*, stamp-h*. 7 * configure.ac: Remove AC_SRC_DIR(.../dosfs.h). 8 Remove AM_CONFIG_HEADER(src/dosfs/config.h). 9 Remove AM_CONFIG_HEADER(src/imfs/config.h). 10 Add AM_CONFIG_HEADER(config.h). 11 * src/dosfs/Makefile.am: INCLUDES = -I../.. . 12 * src/imfs/Makefile.am: INCLUDES = -I../.. . 13 1 14 2002-03-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 15 -
c/src/libfs/configure.ac
r7ed57bd rc31deeb 6 6 AC_INIT 7 7 AC_CONFIG_SRCDIR([src/imfs/imfs.h]) 8 AC_CONFIG_SRCDIR([src/dosfs/dosfs.h]) 8 9 9 RTEMS_TOP(../../..) 10 10 AC_CONFIG_AUX_DIR(../../..) … … 28 28 29 29 AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix") 30 AM_CONFIG_HEADER(src/imfs/config.h) 31 AM_CONFIG_HEADER(src/dosfs/config.h) 30 AM_CONFIG_HEADER(config.h) 32 31 33 32 # Explicitly list all Makefiles here -
c/src/libfs/src/dosfs/Makefile.am
r7ed57bd rc31deeb 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 INCLUDES = -I. 11 INCLUDES = -I../.. 12 12 13 AM_CFLAGS += $(LIBC_DEFINES) 13 14 -
c/src/libfs/src/imfs/Makefile.am
r7ed57bd rc31deeb 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 INCLUDES = -I. 7 INCLUDES = -I../.. 8 8 9 9 LIBNAME = libimfs -
cpukit/libfs/.cvsignore
r7ed57bd rc31deeb 13 13 missing 14 14 mkinstalldirs 15 config.h* 16 stamp-h* -
cpukit/libfs/ChangeLog
r7ed57bd rc31deeb 1 2002-03-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 Addressing PR 140. 4 * src/dosfs/config.h.in: Removed. 5 * src/dosfs/stamp-h2.in: Removed. 6 * .cvsignore: Add config.h*, stamp-h*. 7 * configure.ac: Remove AC_SRC_DIR(.../dosfs.h). 8 Remove AM_CONFIG_HEADER(src/dosfs/config.h). 9 Remove AM_CONFIG_HEADER(src/imfs/config.h). 10 Add AM_CONFIG_HEADER(config.h). 11 * src/dosfs/Makefile.am: INCLUDES = -I../.. . 12 * src/imfs/Makefile.am: INCLUDES = -I../.. . 13 1 14 2002-03-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 15 -
cpukit/libfs/configure.ac
r7ed57bd rc31deeb 6 6 AC_INIT 7 7 AC_CONFIG_SRCDIR([src/imfs/imfs.h]) 8 AC_CONFIG_SRCDIR([src/dosfs/dosfs.h]) 8 9 9 RTEMS_TOP(../../..) 10 10 AC_CONFIG_AUX_DIR(../../..) … … 28 28 29 29 AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix") 30 AM_CONFIG_HEADER(src/imfs/config.h) 31 AM_CONFIG_HEADER(src/dosfs/config.h) 30 AM_CONFIG_HEADER(config.h) 32 31 33 32 # Explicitly list all Makefiles here -
cpukit/libfs/src/dosfs/Makefile.am
r7ed57bd rc31deeb 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 INCLUDES = -I. 11 INCLUDES = -I../.. 12 12 13 AM_CFLAGS += $(LIBC_DEFINES) 13 14 -
cpukit/libfs/src/imfs/Makefile.am
r7ed57bd rc31deeb 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 INCLUDES = -I. 7 INCLUDES = -I../.. 8 8 9 9 LIBNAME = libimfs
Note: See TracChangeset
for help on using the changeset viewer.