xref: /rk3399_rockchip-uboot/fs/yaffs2/Makefile (revision 0e8cc8bd92257da2e1df88cbc985e166e472ce61)
1# Main Makefile for YAFFS
2#
3#
4# YAFFS: Yet Another Flash File System. A NAND-flash specific file system.
5#
6# Copyright (C) 2002-2007 Aleph One Ltd.
7#   for Toby Churchill Ltd and Brightstar Engineering
8#
9# Created by Charles Manning <charles@aleph1.co.uk>
10#
11# This program is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License version 2 as
13# published by the Free Software Foundation.
14
15
16ifneq ($(KERNELRELEASE),)
17	EXTRA_CFLAGS += -DYAFFS_OUT_OF_TREE
18
19	obj-m := yaffs2.o
20
21	yaffs2-objs := yaffs_mtdif.o yaffs_mtdif2.o
22	yaffs2-objs += yaffs_mtdif1.o yaffs_packedtags1.o
23	yaffs2-objs += yaffs_ecc.o yaffs_fs.o yaffs_guts.o
24	yaffs2-objs += yaffs_packedtags2.o yaffs_qsort.o
25	yaffs2-objs += yaffs_tagscompat.o yaffs_tagsvalidity.o
26	yaffs2-objs += yaffs_checkptrw.o yaffs_nand.o
27
28else
29	KERNELDIR ?= /lib/modules/$(shell uname -r)/build
30	PWD := $(shell pwd)
31
32modules default:
33	$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
34
35mi modules_install:
36	$(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
37
38clean:
39	$(MAKE) -C $(KERNELDIR) M=$(PWD) clean
40endif
41