-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile.am
35 lines (28 loc) · 838 Bytes
/
Makefile.am
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
orpsoc_PYTHON = \
orpsoc/__init__.py \
orpsoc/build.py \
orpsoc/config.py \
orpsoc/core.py \
orpsoc/coremanager.py \
orpsoc/orpsocconfigparser.py \
orpsoc/plusargs.py \
orpsoc/system.py \
orpsoc/utils.py \
orpsoc/verilog.py \
orpsoc/vpi.py
orpsocdir = $(pkgpythondir)
provider_PYTHON = \
orpsoc/provider/__init__.py \
orpsoc/provider/github.py \
orpsoc/provider/opencores.py \
orpsoc/provider/url.py
providerdir = $(orpsocdir)/provider
simulator_PYTHON = \
orpsoc/simulator/__init__.py \
orpsoc/simulator/icarus.py \
orpsoc/simulator/modelsim.py \
orpsoc/simulator/simulator.py \
orpsoc/simulator/verilator.py
simulatordir = $(orpsocdir)/simulator
EXTRA_DIST = INSTALL
SUBDIRS = bin