1b2441318SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0 21da177e4SLinus Torvalds# 3da4458bdSDavid Howells# Makefile for the linux RomFS filesystem routines. 41da177e4SLinus Torvalds# 51da177e4SLinus Torvalds 61da177e4SLinus Torvaldsobj-$(CONFIG_ROMFS_FS) += romfs.o 71da177e4SLinus Torvalds 8da4458bdSDavid Howellsromfs-y := storage.o super.o 9da4458bdSDavid Howells 10da4458bdSDavid Howellsifneq ($(CONFIG_MMU),y) 11da4458bdSDavid Howellsromfs-$(CONFIG_ROMFS_ON_MTD) += mmap-nommu.o 12da4458bdSDavid Howellsendif 13da4458bdSDavid Howells 14