For some reason, rt_pend_tq.o was compiled separately. Fixed.
authorDavid Schleef <ds@schleef.org>
Sun, 27 May 2001 22:37:28 +0000 (22:37 +0000)
committerDavid Schleef <ds@schleef.org>
Sun, 27 May 2001 22:37:28 +0000 (22:37 +0000)
(Probably just created another bug...)

comedi/rt_pend_tq/Makefile

index abb2f768830dae521c7bddd365e010015d360df1..14a794943f22d228abe0d45853041c5dd770ee9b 100644 (file)
@@ -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