2008-10-28 00:27:55 +08:00
|
|
|
#
|
|
|
|
# Kbuild for the EXOFS module
|
|
|
|
#
|
|
|
|
# Copyright (C) 2008 Panasas Inc. All rights reserved.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Boaz Harrosh <bharrosh@panasas.com>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License version 2
|
|
|
|
#
|
|
|
|
# Kbuild - Gets included from the Kernels Makefile and build system
|
|
|
|
#
|
|
|
|
|
2011-08-07 10:22:06 +08:00
|
|
|
# ore module library
|
2011-10-13 00:42:22 +08:00
|
|
|
libore-y := ore.o ore_raid.o
|
|
|
|
obj-$(CONFIG_ORE) += libore.o
|
2011-08-07 10:22:06 +08:00
|
|
|
|
2012-03-15 09:01:45 +08:00
|
|
|
exofs-y := inode.o file.o symlink.o namei.o dir.o super.o sys.o
|
2008-10-28 00:27:55 +08:00
|
|
|
obj-$(CONFIG_EXOFS_FS) += exofs.o
|