Files
epics-base/src/ca/Makefile.Host
2000-04-28 01:29:00 +00:00

61 lines
1.1 KiB
Makefile

TOP=../..
include $(TOP)/configure/CONFIG
#
# includes to install from this subproject
#
INC += caProto.h
#
# Contents of library: generic, special and for all systems
#
# on generic system
#ca_SRCS_DEFAULT = if_depen.c
# on WIN32 only
#ca_SRCS_WIN32 = windows_depen.c
# on vxWorks only
#ca_SRCS_vxWorks = vxWorks_depen.c
# on all systems
ca_SRCS += caOsDependent.c
ca_SRCS += iocinf.c
ca_SRCS += service.c
ca_SRCS += conn.c
ca_SRCS += flow_control.c
ca_SRCS += syncgrp.c
ca_SRCS += access.c
ca_SRCS += convert.c
ca_SRCS += test_event.c
ca_SRCS += bsd_depen.c
ca_SRCS += repeater.c
# Library to build:
# lib$(LIBRARY).a or ..dll/..exp/..lib
#
LIBRARY = ca
PROD := caRepeater
# libs needed to build [TEST]PRODUCT
PROD_LIBS = ca Com
ca_DIR = .
Com_DIR = $(INSTALL_LIB)
SYS_PROD_LIBS_WIN32 = ws2_32 user32 advapi32
TESTPROD := catime acctst
include $(TOP)/configure/RULES_BUILD
pcatime : catime.o $(PRODDEPLIBS)
$(PURIFY) $(LINK.c) catime.o $(LDLIBS)
pacctst : acctst.o $(PRODDEPLIBS)
$(PURIFY) $(LINK.c) acctst.o $(LDLIBS)
# EOF Makefile.Host