forked from li3939108/DEF-Parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
70 lines (65 loc) · 1.28 KB
/
Makefile
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
DEF_TABNAME = def
DEF_BISON_SRCS = def.y
FAKE_ALL: all
LIBTARGET = libcdef.a
PUBLIC_HDRS = \
defiAssertion.h \
defiBlockage.h \
defiComponent.h \
defiDebug.h \
defiDefs.h \
defiFPC.h \
defiFill.h \
defiGroup.h \
defiIOTiming.h \
defiKRDefs.h \
defiMisc.h \
defiNet.h \
defiNonDefault.h \
defiPartition.h \
defiPath.h \
defiPinCap.h \
defiPinProp.h \
defiProp.h \
defiPropType.h \
defiRegion.h \
defiRowTrack.h \
defiScanchain.h \
defiSite.h \
defiSlot.h \
defiTimingDisable.h \
defiTypedefs.h \
defiUser.h \
defiVia.h \
defrReader.h \
defwWriter.h \
defwWriterCalls.h
LIBSRCS = \
xdefiAssertion.cpp \
xdefiBlockage.cpp \
xdefiComponent.cpp \
xdefiDebug.cpp \
xdefiFPC.cpp \
xdefiFill.cpp \
xdefiGroup.cpp \
xdefiIOTiming.cpp \
xdefiMisc.cpp \
xdefiNet.cpp \
xdefiNonDefault.cpp \
xdefiPartition.cpp \
xdefiPath.cpp \
xdefiPinCap.cpp \
xdefiPinProp.cpp \
xdefiProp.cpp \
xdefiPropType.cpp \
xdefiRegion.cpp \
xdefiRowTrack.cpp \
xdefiScanchain.cpp \
xdefiSite.cpp \
xdefiSlot.cpp \
xdefiTimingDisable.cpp \
xdefiVia.cpp \
xdefrReader.cpp \
xdefwWriter.cpp \
xdefwWriterCalls.cpp
include ../template.mk