From 616f35b6ff956c994e2496b5ff234eb59069c3f2 Mon Sep 17 00:00:00 2001 From: Mike Bordua Date: Sat, 16 Jul 1994 00:26:54 +0000 Subject: [PATCH] Initial version. --- src/iocCore/Makefile.Vx | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/iocCore/Makefile.Vx diff --git a/src/iocCore/Makefile.Vx b/src/iocCore/Makefile.Vx new file mode 100644 index 000000000..2a2f4318a --- /dev/null +++ b/src/iocCore/Makefile.Vx @@ -0,0 +1,30 @@ +EPICS = .. +include $(EPICS)/config/CONFIG_vx + +LINK.c=$(LD) $(LDFLAGS) + +all: install + +depends: + +build_libs: + +install_libs: + +build: + +install: installVX iocCore + +installVX: $(EPICS_VX_IMAGE) $(EPICS_VX_IMAGE_SYM) + +$(EPICS_VX_IMAGE): $(VX_IMAGE) + install -m 444 $? $@ + +$(EPICS_VX_IMAGE_SYM): $(VX_IMAGE_SYM) + install -m 444 $? $@ + +iocCore: $(IOC_CORE) + +$(IOC_CORE): $(IOC_CORE_OBJS) + $(LINK.c) $@ $? + @what $@