Added comedi/realtime/Makefile
authorDavid Schleef <ds@schleef.org>
Tue, 15 Feb 2000 21:49:58 +0000 (21:49 +0000)
committerDavid Schleef <ds@schleef.org>
Tue, 15 Feb 2000 21:49:58 +0000 (21:49 +0000)
comedi/realtime/Makefile [new file with mode: 0644]

diff --git a/comedi/realtime/Makefile b/comedi/realtime/Makefile
new file mode 100644 (file)
index 0000000..2997c58
--- /dev/null
@@ -0,0 +1,36 @@
+
+ALL_SUB_DIRS :=
+MOD_SUB_DIRS :=
+SUB_DIRS     :=
+MOD_LIST_NAME := MISC_MODULES
+
+EXTRA_CFLAGS := -I ../
+
+export-objs := 
+
+obj-y :=
+obj-m :=
+obj-n :=
+obj-  :=
+
+obj-$(CONFIG_COMEDI_VD_TIMER)          += vd_timer.o
+obj-$(CONFIG_COMEDI_VD_DDS)            += vd_dds.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)))
+
+
+
+include $(TOPDIR)/Rules.make
+
+
+realtime.o:    $(obj-y)
+       $(LD) -r -o $@ $(obj-y)
+
+