Makefile 198 B

123456789101112
  1. #
  2. # Makefile for the linux RomFS filesystem routines.
  3. #
  4. obj-$(CONFIG_ROMFS_FS) += romfs.o
  5. romfs-y := storage.o super.o
  6. ifneq ($(CONFIG_MMU),y)
  7. romfs-$(CONFIG_ROMFS_ON_MTD) += mmap-nommu.o
  8. endif