https://jxself.org/git/linux-libre.git
Raw File
Tip revision: b963c0a0f141d6ae838ccec7bca0bed1c3c99904 authored by Jason Self on 05 October 2013, 14:18:20 UTC
Linux-libre 3.11.4-gnu
Tip revision: b963c0a
Makefile
#
# Makefile for the linux RomFS filesystem routines.
#

obj-$(CONFIG_ROMFS_FS) += romfs.o

romfs-y := storage.o super.o

ifneq ($(CONFIG_MMU),y)
romfs-$(CONFIG_ROMFS_ON_MTD) += mmap-nommu.o
endif

back to top