-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathMakefile
More file actions
40 lines (26 loc) · 821 Bytes
/
Makefile
File metadata and controls
40 lines (26 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
TOP=..
include $(TOP)/configure/CONFIG
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE
#=============================
USR_CPPFLAGS += -I$(TOP)/common
#=============================
# Build the IOC application
LIBRARY_IOC = epicspci
SHRLIB_VERSION ?= $(DEVLIB2_MAJOR_VERSION).$(DEVLIB2_MINOR_VERSION)
USR_INCLUDES += -I../os/$(OS_CLASS)
DBD += epicspci.dbd
INC += devLibPCI.h
INC += devLibPCIImpl.h
INC += devLibPCIOSD.h
epicspci_SRCS += devLibPCI.c
epicspci_SRCS += devLibPCIStrings.c
epicspci_SRCS_RTEMS += osdPciShared.c
epicspci_SRCS_vxWorks += osdPciShared.c
epicspci_SRCS += devLibPCIOSD.c
epicspci_SRCS += pcish.c
epicspci_LIBS += Com
#===========================
include $(TOP)/configure/RULES
#----------------------------------------
# ADD RULES AFTER THIS LINE