Changeset c41c8b7 in rtems
- Timestamp:
- 07/08/03 09:47:21 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- e604ab6
- Parents:
- ffc144e
- Location:
- cpukit/libfs
- Files:
-
- 2 added
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libfs/ChangeLog
rffc144e rc41c8b7 1 2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Remove (Merged-in into ../configure.ac) 4 * Makefile.am, src/Makefile.am, src/dosfs/Makefile.am, 5 src/imfs/Makefile.am: Reflect having merged configure.ac into 6 ../configure.ac. 7 * src/dosfs/config.h: New. 8 * src/dosfs/Makefile.am: Add config.h. 9 * src/imfsfs/config.h: New. 10 * src/imfs/Makefile.am: Add config.h. 11 Remove COMMON_C_FILES, DOC_FILES (Unused). 12 1 13 2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 14 -
cpukit/libfs/Makefile.am
rffc144e rc41c8b7 2 2 ## $Id$ 3 3 ## 4 5 ACLOCAL_AMFLAGS = -I ../aclocal6 4 7 5 SUBDIRS = src … … 9 7 EXTRA_DIST = README 10 8 11 include $(top_srcdir)/ ../automake/subdirs.am12 include $(top_srcdir)/ ../automake/local.am9 include $(top_srcdir)/automake/subdirs.am 10 include $(top_srcdir)/automake/local.am -
cpukit/libfs/src/Makefile.am
rffc144e rc41c8b7 6 6 SUBDIRS = imfs dosfs 7 7 8 include $(top_srcdir)/ ../automake/subdirs.am9 include $(top_srcdir)/ ../automake/local.am8 include $(top_srcdir)/automake/subdirs.am 9 include $(top_srcdir)/automake/local.am -
cpukit/libfs/src/dosfs/Makefile.am
rffc144e rc41c8b7 4 4 5 5 6 include $(top_srcdir)/ ../automake/multilib.am7 include $(top_srcdir)/ ../automake/compile.am8 include $(top_srcdir)/ ../automake/lib.am6 include $(top_srcdir)/automake/multilib.am 7 include $(top_srcdir)/automake/compile.am 8 include $(top_srcdir)/automake/lib.am 9 9 10 AM_CPPFLAGS += -I../.. $(LIBC_DEFINES) 10 noinst_HEADERS = config.h 11 12 AM_CPPFLAGS += $(LIBC_DEFINES) 11 13 12 14 FATFS_C_FILES = fat.c fat_fat_operations.c fat_file.c … … 51 53 EXTRA_DIST = $(DOSFS_C_FILES) $(FATFS_C_FILES) 52 54 53 include $(top_srcdir)/ ../automake/local.am55 include $(top_srcdir)/automake/local.am -
cpukit/libfs/src/imfs/Makefile.am
rffc144e rc41c8b7 20 20 EMBEDDED_C_FILES = $(IMFS_C_FILES) 21 21 22 COMMON_C_FILES =23 24 22 if UNIX 25 C_FILES = $( COMMON_C_FILES) $(UNIX_C_FILES)23 C_FILES = $(UNIX_C_FILES) 26 24 else 27 C_FILES = $( COMMON_C_FILES) $(EMBEDDED_C_FILES)25 C_FILES = $(EMBEDDED_C_FILES) 28 26 endif 29 27 OBJS = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT)) 30 28 29 noinst_HEADERS = config.h 30 31 31 include_HEADERS = imfs.h 32 32 33 include $(top_srcdir)/ ../automake/multilib.am34 include $(top_srcdir)/ ../automake/compile.am35 include $(top_srcdir)/ ../automake/lib.am33 include $(top_srcdir)/automake/multilib.am 34 include $(top_srcdir)/automake/compile.am 35 include $(top_srcdir)/automake/lib.am 36 36 37 AM_CPPFLAGS += -I../..$(LIBC_DEFINES)37 AM_CPPFLAGS += $(LIBC_DEFINES) 38 38 39 39 PREINSTALL_FILES = $(PROJECT_INCLUDE) \ … … 55 55 $(make-library) 56 56 57 DOC_FILES = TODO CASES 57 EXTRA_DIST = $(EMBEDDED_C_FILES) $(UNIX_C_FILES) 58 58 59 EXTRA_DIST = $(DOC_FILES) $(COMMON_C_FILES) $(EMBEDDED_C_FILES) \ 60 $(UNIX_C_FILES) 61 62 include $(top_srcdir)/../automake/local.am 59 include $(top_srcdir)/automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.