Makefile
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the Linux filesystems.
  3. #
  4. # 14 Sep 2000, Christoph Hellwig <hch@infradead.org>
  5. # Rewritten to use lists instead of if-statements.
  6. O_TARGET := fs.o
  7. export-objs := filesystems.o open.o dcache.o buffer.o
  8. mod-subdirs := nls
  9. obj-y := open.o read_write.o devices.o file_table.o buffer.o 
  10. super.o block_dev.o char_dev.o stat.o exec.o pipe.o namei.o 
  11. fcntl.o ioctl.o readdir.o select.o fifo.o locks.o 
  12. dcache.o inode.o attr.o bad_inode.o file.o iobuf.o dnotify.o 
  13. filesystems.o namespace.o seq_file.o xattr.o
  14. ifeq ($(CONFIG_QUOTA),y)
  15. obj-y += dquot.o
  16. else
  17. obj-y += noquot.o
  18. endif
  19. subdir-$(CONFIG_PROC_FS) += proc
  20. subdir-y += partitions
  21. # Do not add any filesystems before this line
  22. subdir-$(CONFIG_EXT3_FS) += ext3    # Before ext2 so root fs can be ext3
  23. subdir-$(CONFIG_JBD) += jbd
  24. subdir-$(CONFIG_EXT2_FS) += ext2
  25. subdir-$(CONFIG_CRAMFS) += cramfs
  26. subdir-$(CONFIG_RAMFS) += ramfs
  27. subdir-$(CONFIG_CODA_FS) += coda
  28. subdir-$(CONFIG_INTERMEZZO_FS) += intermezzo
  29. subdir-$(CONFIG_MINIX_FS) += minix
  30. subdir-$(CONFIG_FAT_FS) += fat
  31. subdir-$(CONFIG_UMSDOS_FS) += umsdos
  32. subdir-$(CONFIG_MSDOS_FS) += msdos
  33. subdir-$(CONFIG_VFAT_FS) += vfat
  34. subdir-$(CONFIG_BFS_FS) += bfs
  35. subdir-$(CONFIG_ISO9660_FS) += isofs
  36. subdir-$(CONFIG_DEVFS_FS) += devfs
  37. subdir-$(CONFIG_HFS_FS) += hfs
  38. subdir-$(CONFIG_VXFS_FS) += freevxfs
  39. subdir-$(CONFIG_NFS_FS) += nfs
  40. subdir-$(CONFIG_NFSD) += nfsd
  41. subdir-$(CONFIG_LOCKD) += lockd
  42. subdir-$(CONFIG_NLS) += nls
  43. subdir-$(CONFIG_SYSV_FS) += sysv
  44. subdir-$(CONFIG_SMB_FS) += smbfs
  45. subdir-$(CONFIG_NCP_FS) += ncpfs
  46. subdir-$(CONFIG_HPFS_FS) += hpfs
  47. subdir-$(CONFIG_NTFS_FS) += ntfs
  48. subdir-$(CONFIG_UFS_FS) += ufs
  49. subdir-$(CONFIG_EFS_FS) += efs
  50. subdir-$(CONFIG_JFFS_FS) += jffs
  51. subdir-$(CONFIG_JFFS2_FS) += jffs2
  52. subdir-$(CONFIG_AFFS_FS) += affs
  53. subdir-$(CONFIG_ROMFS_FS) += romfs
  54. subdir-$(CONFIG_QNX4FS_FS) += qnx4
  55. subdir-$(CONFIG_UDF_FS) += udf
  56. subdir-$(CONFIG_AUTOFS_FS) += autofs
  57. subdir-$(CONFIG_AUTOFS4_FS) += autofs4
  58. subdir-$(CONFIG_ADFS_FS) += adfs
  59. subdir-$(CONFIG_REISERFS_FS) += reiserfs
  60. subdir-$(CONFIG_DEVPTS_FS) += devpts
  61. subdir-$(CONFIG_SUN_OPENPROMFS) += openpromfs
  62. subdir-$(CONFIG_BEFS_FS) += befs
  63. subdir-$(CONFIG_JFS_FS) += jfs
  64. obj-$(CONFIG_BINFMT_AOUT) += binfmt_aout.o
  65. obj-$(CONFIG_BINFMT_EM86) += binfmt_em86.o
  66. obj-$(CONFIG_BINFMT_MISC) += binfmt_misc.o
  67. # binfmt_script is always there
  68. obj-y += binfmt_script.o
  69. obj-$(CONFIG_BINFMT_ELF) += binfmt_elf.o
  70. # persistent filesystems
  71. obj-y += $(join $(subdir-y),$(subdir-y:%=/%.o))
  72. include $(TOPDIR)/Rules.make