Commit 1dd719a9 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Jan Kara
Browse files

isofs: Use *-y instead of *-objs in Makefile



*-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: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: default avatarJan Kara <jack@suse.cz>
Message-Id: <20240508152129.1445372-1-andriy.shevchenko@linux.intel.com>
parent 290fa947
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -5,7 +5,6 @@

obj-$(CONFIG_ISO9660_FS) += isofs.o

isofs-objs-y 			:= namei.o inode.o dir.o util.o rock.o export.o
isofs-objs-$(CONFIG_JOLIET)	+= joliet.o
isofs-objs-$(CONFIG_ZISOFS)	+= compress.o
isofs-objs			:= $(isofs-objs-y)
isofs-y 		:= namei.o inode.o dir.o util.o rock.o export.o
isofs-$(CONFIG_JOLIET)	+= joliet.o
isofs-$(CONFIG_ZISOFS)	+= compress.o