From 8a293280cb9fc8a1025e24b99a639935ee4e9fc1 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Wed, 8 May 2002 01:04:19 -0700 Subject: Fix makefile errors --- drivers/message/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/message/Makefile b/drivers/message/Makefile index 1c5485ae852e..3bb37d0dec3e 100644 --- a/drivers/message/Makefile +++ b/drivers/message/Makefile @@ -7,11 +7,14 @@ O_TARGET := message.o mod-subdirs := i2o fusion subdir-$(CONFIG_I2O) += i2o -ifeq($(CONFIG_I2O),y) +ifeq ($(CONFIG_I2O),y) obj-y += i2o/i2o.o endif subdir-$(CONFIG_FUSION) += fusion -ifeq($(CONFIG_FUSION),y) +ifeq ($(CONFIG_FUSION),y) obj-y += fusion/fusion.o endif + +include $(TOPDIR)/Rules.make + -- cgit v1.2.3