From 0038888a6c4bb4685221d4d455cbb0abc40aba7b Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Mon, 4 May 2015 18:58:35 +0000 Subject: [PATCH] Same as previous modification ("distinguish between seq-2-1 and seq-2-2") for WithAsynVx_LIBS --- motorExApp/WithAsyn/Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/motorExApp/WithAsyn/Makefile b/motorExApp/WithAsyn/Makefile index be5122a6..ee09290c 100644 --- a/motorExApp/WithAsyn/Makefile +++ b/motorExApp/WithAsyn/Makefile @@ -111,7 +111,14 @@ endif WithAsynVx_LIBS += asyn # Needed for Newport SNL programs ifdef SNCSEQ -WithAsynVx_LIBS += seqDev seq pv + ifeq (seq-2-1, $(findstring seq-2-1, $(SNCSEQ))) + WithAsynVx_LIBS += seqDev seq pv + else ifeq (seq-2.1, $(findstring seq-2.1, $(SNCSEQ))) + WithAsynVx_LIBS += seqDev seq pv + else + # seq 2.2. + WithAsynVx_LIBS += seq pv + endif endif WithAsynVx_LIBS += $(EPICS_BASE_IOC_LIBS)