I think this fixes building rt_pend_tq repeatedly
authorDavid Schleef <ds@schleef.org>
Fri, 6 Apr 2001 22:54:16 +0000 (22:54 +0000)
committerDavid Schleef <ds@schleef.org>
Fri, 6 Apr 2001 22:54:16 +0000 (22:54 +0000)
comedi/Makefile

index 18711f1f3aad0b4b9482db0020d5aa65d7be5998..26e55b3401c27c858103c8e6d2b9a777ee18e0b3 100644 (file)
@@ -1,7 +1,7 @@
 
 
 SUB_DIRS     := drivers
-ALL_SUB_DIRS := kcomedilib drivers realtime rt_pend_tq
+ALL_SUB_DIRS := kcomedilib drivers rt_pend_tq
 MOD_SUB_DIRS := drivers
 MOD_IN_SUB_DIRS :=
 
@@ -13,8 +13,8 @@ ifneq ($(CONFIG_COMEDI_KLIB),)
 endif
 
 ifeq ($(CONFIG_COMEDI_RT),y)
-       MOD_SUB_DIRS += realtime
-       SUB_DIRS += realtime
+       MOD_SUB_DIRS += rt_pend_tq
+       SUB_DIRS += rt_pend_tq
 endif
 
 MOD_LIST_NAME := MISC_MODULES
@@ -33,7 +33,7 @@ endif
 
 
 ifeq ($(CONFIG_COMEDI_RT),y)
-MI_OBJS += rt.o rt_pend_tq/rt_pend_tq.o
+MI_OBJS += rt.o
 endif
 
 
@@ -42,7 +42,7 @@ include $(TOPDIR)/Rules.make
 
 
 ifeq ($(CONFIG_COMEDI),m)
-comedi.o: $(MI_OBJS) $(MIX_OBJS)
-       $(LD) -r -o $@ $(MI_OBJS) $(MIX_OBJS)
+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
 endif