mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 07:31:45 +00:00
1dd719a959
*-objs suffix is reserved rather for (user-space) host programs while usually *-y suffix is used for kernel drivers (although *-objs works for that purpose for now). Let's correct the old usages of *-objs in Makefiles. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Jan Kara <jack@suse.cz> Message-Id: <20240508152129.1445372-1-andriy.shevchenko@linux.intel.com>
11 lines
259 B
Makefile
11 lines
259 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Linux isofs filesystem routines.
|
|
#
|
|
|
|
obj-$(CONFIG_ISO9660_FS) += isofs.o
|
|
|
|
isofs-y := namei.o inode.o dir.o util.o rock.o export.o
|
|
isofs-$(CONFIG_JOLIET) += joliet.o
|
|
isofs-$(CONFIG_ZISOFS) += compress.o
|