49 lines
1.4 KiB
Makefile
49 lines
1.4 KiB
Makefile
#*************************************************************************
|
|
# Copyright (c) 2002 The University of Chicago, as Operator of Argonne
|
|
# National Laboratory.
|
|
# Copyright (c) 2002 The Regents of the University of California, as
|
|
# Operator of Los Alamos National Laboratory.
|
|
# EPICS BASE Versions 3.13.7
|
|
# and higher are distributed subject to a Software License Agreement found
|
|
# in file LICENSE that is included with this distribution.
|
|
#*************************************************************************
|
|
TOP=../..
|
|
include $(TOP)/configure/CONFIG
|
|
|
|
# includes to install from this sub-project
|
|
#
|
|
|
|
INC += registry.h
|
|
INC += registryRecordType.h
|
|
INC += registryDeviceSupport.h
|
|
INC += registryDriverSupport.h
|
|
INC += registryFunction.h
|
|
INC += registerRecordDeviceDriver.h
|
|
|
|
|
|
# general contents of library on all platforms
|
|
#
|
|
# system specific lines in RULES.Host figure out
|
|
# 1) what object names (.o, .obj,...) to build
|
|
# 2) where to find the sources: ., ./os/<ARCH_CLASS>, ./os/generic, ...
|
|
#
|
|
|
|
SCRIPTS_HOST += registerRecordDeviceDriver.pl
|
|
|
|
LIBSRCS += registry.c
|
|
LIBSRCS += registryRecordType.c
|
|
LIBSRCS += registryDeviceSupport.c
|
|
LIBSRCS += registryDriverSupport.c
|
|
LIBSRCS += registryFunction.c
|
|
|
|
LIBRARY_IOC = registryIoc
|
|
registryIoc_DLL_LIBS = Com
|
|
|
|
registryIoc_RCS_WIN32 = registryIoc.rc
|
|
|
|
OBJLIB_vxWorks = registryIoc
|
|
OBJLIB_SRCS = $(LIBSRCS)
|
|
|
|
include $(TOP)/configure/RULES
|
|
|