From: David Schleef Date: Mon, 9 Apr 2001 05:03:46 +0000 (+0000) Subject: Fix linking of rt_pend_tq X-Git-Tag: r0_7_58~6 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a13fae8090aa8210379495961fd8120f259c545d;p=comedi.git Fix linking of rt_pend_tq --- diff --git a/comedi/Makefile b/comedi/Makefile index 26e55b34..76f41f29 100644 --- a/comedi/Makefile +++ b/comedi/Makefile @@ -15,6 +15,7 @@ endif ifeq ($(CONFIG_COMEDI_RT),y) MOD_SUB_DIRS += rt_pend_tq SUB_DIRS += rt_pend_tq + EXTRA_OBJS := rt_pend_tq/rt_pend_tq.o endif MOD_LIST_NAME := MISC_MODULES @@ -42,7 +43,7 @@ include $(TOPDIR)/Rules.make ifeq ($(CONFIG_COMEDI),m) -comedi.o: $(MI_OBJS) $(MIX_OBJS) rt_pend_tq/rt_pend_tq.o - $(LD) -r -o $@ $(MI_OBJS) $(MIX_OBJS) rt_pend_tq/rt_pend_tq.o +comedi.o: $(MI_OBJS) $(MIX_OBJS) $(EXTRA_OBJS) + $(LD) -r -o $@ $(MI_OBJS) $(MIX_OBJS) $(EXTRA_OBJS) endif