From 8014cfc32ea53d1b40ea60f3d6b577840863b80a Mon Sep 17 00:00:00 2001 From: David Schleef Date: Sun, 27 May 2001 22:37:28 +0000 Subject: [PATCH] For some reason, rt_pend_tq.o was compiled separately. Fixed. (Probably just created another bug...) --- comedi/rt_pend_tq/Makefile | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/comedi/rt_pend_tq/Makefile b/comedi/rt_pend_tq/Makefile index abb2f768..14a79494 100644 --- a/comedi/rt_pend_tq/Makefile +++ b/comedi/rt_pend_tq/Makefile @@ -6,24 +6,9 @@ MOD_LIST_NAME := MISC_MODULES EXTRA_CFLAGS := -I ../ -export-objs := - -obj-y := -obj-m := -obj-n := -obj- := - -obj-$(CONFIG_COMEDI_RT) += rt_pend_tq.o - -obj-m += $(obj-y) - -#L_OBJS := $(sort $(filter-out $(export-objs), $(obj-y))) -#LX_OBJS := $(sort $(filter $(export-objs), $(obj-y))) -#MI_OBJS := $(sort $(filter-out $(export-objs), $(obj-y))) -#MIX_OBJS := $(sort $(filter $(export-objs), $(obj-y))) -M_OBJS := $(sort $(filter-out $(export-objs), $(obj-m))) -MX_OBJS := $(sort $(filter $(export-objs), $(obj-m))) - +ifeq ($(CONFIG_COMEDI_RT),y) +MI_OBJS += rt_pend_tq.o +endif include $(TOPDIR)/Rules.make -- 2.26.2