From da18ee75fd04d14bdde284460ebd9910bc575aa7 Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Mon, 19 Jul 2004 16:03:45 +0000 Subject: [PATCH] - Default to no device drivers built. - Added "#!" comments. --- motorApp/Makefile | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/motorApp/Makefile b/motorApp/Makefile index 0a8b2d9d..b1b77c51 100644 --- a/motorApp/Makefile +++ b/motorApp/Makefile @@ -3,29 +3,29 @@ include $(TOP)/configure/CONFIG # MotorSrc is required for all motor record configurations. It MUST appear # 1st in this list of directories. + DIRS += MotorSrc -# -# Select individual device/driver support modules by removing the comment. -DIRS += OmsSrc -DIRS += SoftMotorSrc -#DIRS += V544Src +# Select individual device/driver modules by removing the "#!" comment. + +#!DIRS += OmsSrc +#!DIRS += SoftMotorSrc +#!DIRS += V544Src + +# All the following modules require ASYN. +ifdef ASYN +#!DIRS += NewportSrc +#!DIRS += ImsSrc +#!DIRS += AcsSrc +#!DIRS += MclennanSrc +#!DIRS += PiSrc +#!DIRS += MicroMoSrc +#!DIRS += MicosSrc +endif ifdef MX DIRS += MXmotorSrc endif -# The following modules require ASYN. -# Select individual device/driver support modules by removing the comment. -ifdef ASYN -#DIRS += NewportSrc -#DIRS += ImsSrc -#DIRS += AcsSrc -#DIRS += MclennanSrc -#DIRS += PiSrc -#DIRS += MicroMoSrc -#DIRS += MicosSrc -endif - DIRS += Db include $(TOP)/configure/RULES_DIRS