mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 02:01:29 +00:00
cf283ade08
Export everything from ore need exporting. Change Kbuild and Kconfig to build ore.ko as an independent module. Import ore from exofs Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
20 lines
495 B
Makefile
20 lines
495 B
Makefile
#
|
|
# 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
|
|
#
|
|
|
|
# ore module library
|
|
obj-$(CONFIG_ORE) += ore.o
|
|
|
|
exofs-y := inode.o file.o symlink.o namei.o dir.o super.o
|
|
obj-$(CONFIG_EXOFS_FS) += exofs.o
|