From 8aa4151acb4d61d2b159753ad08b6c775652ded0 Mon Sep 17 00:00:00 2001 From: Mike Bordua Date: Sun, 17 Jul 1994 10:39:58 +0000 Subject: [PATCH] Modified to always link iocCore. --- src/iocCore/Makefile.Vx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/iocCore/Makefile.Vx b/src/iocCore/Makefile.Vx index 525e192c6..3ea99aad4 100644 --- a/src/iocCore/Makefile.Vx +++ b/src/iocCore/Makefile.Vx @@ -11,7 +11,7 @@ build_libs: install_libs: -build: +build: rm_iocCore install: installVX iocCore @@ -23,9 +23,11 @@ $(EPICS_VX_IMAGE): $(VX_IMAGE) $(EPICS_VX_IMAGE_SYM): $(VX_IMAGE_SYM) install -m 444 $? $@ +rm_iocCore: + $(RM) $(IOC_CORE) + iocCore: $(IOC_CORE) -$(IOC_CORE): $(IOC_CORE_OBJS) - $(RM) $@ - $(LINK.c) $@ $? +$(IOC_CORE): + $(LINK.c) $@ $(IOC_CORE_OBJS) @what $@