blob: 844928f1571160abed9d5aff54152b5508eaf7be [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#
David Howellsda4458b2009-02-12 10:40:10 +00003# Makefile for the linux RomFS filesystem routines.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#
5
6obj-$(CONFIG_ROMFS_FS) += romfs.o
7
David Howellsda4458b2009-02-12 10:40:10 +00008romfs-y := storage.o super.o
9
10ifneq ($(CONFIG_MMU),y)
11romfs-$(CONFIG_ROMFS_ON_MTD) += mmap-nommu.o
12endif
13