From: David Schleef Date: Tue, 15 Feb 2000 21:49:58 +0000 (+0000) Subject: Added comedi/realtime/Makefile X-Git-Tag: r0_7_40~42 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3f766d5b3a7973a7e629822fcdeb9364aff800d3;p=comedi.git Added 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) + +