source: rtems/cpukit/libfs/Makefile.am @ a9fa9b7

4.104.115
Last change on this file since a9fa9b7 was a9fa9b7, checked in by Chris Johns <chrisj@…>, on 02/18/10 at 00:24:25

2010-02-18 Chris Johns <chrisj@…>

  • libfs/src/rfs/rtems-rfs-bitmaps.c, libfs/src/rfs/rtems-rfs-bitmaps.h, libfs/src/rfs/rtems-rfs-bitmaps-ut.c, libfs/src/rfs/rtems-rfs-block.c, libfs/src/rfs/rtems-rfs-block.h, libfs/src/rfs/rtems-rfs-block-pos.h, libfs/src/rfs/rtems-rfs-buffer-bdbuf.c, libfs/src/rfs/rtems-rfs-buffer.c, libfs/src/rfs/rtems-rfs-buffer-devio.c, libfs/src/rfs/rtems-rfs-buffer.h, libfs/src/rfs/rtems-rfs-data.h, libfs/src/rfs/rtems-rfs-dir.c, libfs/src/rfs/rtems-rfs-dir.h, libfs/src/rfs/rtems-rfs-dir-hash.c, libfs/src/rfs/rtems-rfs-dir-hash.h, libfs/src/rfs/rtems-rfs-file.c, libfs/src/rfs/rtems-rfs-file.h, libfs/src/rfs/rtems-rfs-file-system.c, libfs/src/rfs/rtems-rfs-file-system-fwd.h, libfs/src/rfs/rtems-rfs-file-system.h, libfs/src/rfs/rtems-rfs-format.c, libfs/src/rfs/rtems-rfs-format.h, libfs/src/rfs/rtems-rfs-group.c, libfs/src/rfs/rtems-rfs-group.h, libfs/src/rfs/rtems-rfs.h, libfs/src/rfs/rtems-rfs-inode.c, libfs/src/rfs/rtems-rfs-inode.h, libfs/src/rfs/rtems-rfs-link.c, libfs/src/rfs/rtems-rfs-link.h, libfs/src/rfs/rtems-rfs-mutex.c, libfs/src/rfs/rtems-rfs-mutex.h, libfs/src/rfs/rtems-rfs-rtems.c, libfs/src/rfs/rtems-rfs-rtems-dev.c, libfs/src/rfs/rtems-rfs-rtems-dir.c, libfs/src/rfs/rtems-rfs-rtems-file.c, libfs/src/rfs/rtems-rfs-rtems.h, libfs/src/rfs/rtems-rfs-rtems-utils.c, libfs/src/rfs/rtems-rfs-shell.c, libfs/src/rfs/rtems-rfs-shell.h, libfs/src/rfs/rtems-rfs-trace.c, libfs/src/rfs/rtems-rfs-trace.h: New.
  • Makefile.am, preinstall.am, libfs/Makefile.am, wrapup/Makefile.am: Updated with the RFS support.
  • libfs/README: Updated after 10 years.
  • libblock/src/flashdisk.c, libblock/src/nvdisk.c, libblock/src/ramdisk-driver.c: Updated to the new error reporting in libblock.
  • libmisc/shell/main_ls.c, libmisc/shell/print-ls.c: Fix printing the size in long mode.
  • libnetworking/nfs/bootp_subr.c, libnetworking/rtems/rtems_bootp.c, libnetworking/rtems/rtems_bsdnet_internal.h: Return the BOOTP/DHCP to the forever behaviour of 4.9 with the ability to call BOOTP and control the process if required.
  • Property mode set to 100644
File size: 3.1 KB
Line 
1##
2## $Id$
3##
4
5include $(top_srcdir)/automake/multilib.am
6include $(top_srcdir)/automake/compile.am
7
8# Pick up nfsclient
9if LIBNETWORKING
10NFSCLIENT_SUBDIR= src/nfsclient
11endif
12SUBDIRS = $(NFSCLIENT_SUBDIR)
13DIST_SUBDIRS = $(SUBDIRS)
14
15EXTRA_DIST = README
16
17noinst_LIBRARIES = libimfs.a
18
19libimfs_a_SOURCES =
20
21libimfs_a_SOURCES += src/imfs/imfs_chown.c src/imfs/imfs_config.c \
22    src/imfs/imfs_creat.c src/imfs/imfs_directory.c src/imfs/imfs_eval.c \
23    src/imfs/imfs_free.c src/imfs/imfs_fsunmount.c src/imfs/imfs_gtkn.c \
24    src/imfs/imfs_init.c src/imfs/imfs_initsupp.c src/imfs/imfs_link.c \
25    src/imfs/imfs_mknod.c src/imfs/imfs_mount.c src/imfs/imfs_fchmod.c \
26    src/imfs/imfs_unlink.c src/imfs/imfs_unmount.c src/imfs/imfs_utime.c \
27    src/imfs/imfs_ntype.c src/imfs/imfs_stat.c src/imfs/imfs_getchild.c \
28    src/imfs/memfile.c src/imfs/imfs_fifo.c src/imfs/deviceio.c \
29    src/imfs/imfs_handlers_device.c src/imfs/imfs_handlers_directory.c \
30    src/imfs/imfs_handlers_link.c src/imfs/imfs_handlers_memfile.c \
31    src/imfs/imfs_debug.c src/imfs/imfs_rmnod.c src/imfs/imfs_symlink.c \
32    src/imfs/imfs_readlink.c src/imfs/imfs_fdatasync.c src/imfs/imfs_fcntl.c \
33    src/imfs/ioman.c src/imfs/miniimfs_init.c src/imfs/imfs_load_tar.c \
34    src/imfs/imfs.h \
35    src/imfs/deviceerrno.c \
36    src/devfs/devfs_init.c src/devfs/devfs_eval.c src/devfs/devfs_mknod.c \
37    src/devfs/devfs_show.c src/devfs/devfs_node_type.c \
38    src/devfs/devopen.c src/devfs/devread.c src/devfs/devwrite.c \
39    src/devfs/devclose.c src/devfs/devioctl.c src/devfs/devstat.c \
40    src/devfs/devfs.h
41
42# POSIX FIFO/pipe
43libimfs_a_SOURCES += src/pipe/fifo.c src/pipe/pipe.c src/pipe/pipe.h
44
45# dosfs
46if LIBDOSFS
47noinst_LIBRARIES += libdosfs.a
48
49# libdosfs_FATFS_C_FILES
50libdosfs_a_SOURCES = src/dosfs/fat.c src/dosfs/fat.h \
51    src/dosfs/fat_fat_operations.c src/dosfs/fat_fat_operations.h \
52    src/dosfs/fat_file.c src/dosfs/fat_file.h
53
54# libdosfs_DOSFS_C_FILES
55libdosfs_a_SOURCES += src/dosfs/msdos_create.c src/dosfs/msdos_dir.c \
56    src/dosfs/msdos_eval.c src/dosfs/msdos_file.c src/dosfs/msdos_free.c \
57    src/dosfs/msdos_fsunmount.c src/dosfs/msdos_handlers_dir.c \
58    src/dosfs/msdos_handlers_file.c src/dosfs/msdos_init.c \
59    src/dosfs/msdos_initsupp.c src/dosfs/msdos_misc.c \
60    src/dosfs/msdos_mknod.c src/dosfs/msdos_node_type.c \
61    src/dosfs/msdos_conv.c src/dosfs/msdos.h src/dosfs/msdos_format.c \
62    src/dosfs/dosfs.h
63endif
64
65# RFS
66noinst_LIBRARIES += librfs.a
67librfs_a_SOURCES = \
68    src/rfs/rtems-rfs-bitmaps.c src/rfs/rtems-rfs-block.c \
69    src/rfs/rtems-rfs-buffer-bdbuf.c src/rfs/rtems-rfs-buffer.c \
70    src/rfs/rtems-rfs-dir-hash.c src/rfs/rtems-rfs-file.c \
71    src/rfs/rtems-rfs-group.c src/rfs/rtems-rfs-inode.c \
72    src/rfs/rtems-rfs-rtems-dev.c src/rfs/rtems-rfs-rtems-utils.c \
73    src/rfs/rtems-rfs-rtems.c src/rfs/rtems-rfs-shell.c \
74    src/rfs/rtems-rfs-bitmaps-ut.c src/rfs/rtems-rfs-dir.c \
75    src/rfs/rtems-rfs-file-system.c src/rfs/rtems-rfs-format.c \
76    src/rfs/rtems-rfs-link.c src/rfs/rtems-rfs-mutex.c \
77    src/rfs/rtems-rfs-rtems-dir.c src/rfs/rtems-rfs-rtems-file.c \
78    src/rfs/rtems-rfs-trace.c
79
80# ---
81include $(srcdir)/preinstall.am
82include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.