From 3f766d5b3a7973a7e629822fcdeb9364aff800d3 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Tue, 15 Feb 2000 21:49:58 +0000 Subject: [PATCH] Added comedi/realtime/Makefile --- comedi/realtime/Makefile | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 comedi/realtime/Makefile diff --git a/comedi/realtime/Makefile b/comedi/realtime/Makefile new file mode 100644 index 00000000..2997c58d --- /dev/null +++ b/comedi/realtime/Makefile @@ -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) + + -- 2.26.2