3 .PHONY
: help Makefile gitupdate
install run_sim
test htmlupload
7 git submodule update
--init
--recursive
--remote
11 cp pinmux
/ls180
/ls180_pins.py src
/soc
/debug
12 cp pinmux
/ls180
/ls180_pins.py src
/soc
/litex
/florent
/libresoc
14 install: gitupdate develop mkpinmux svanalysis
16 # this is now actually part of openpower-isa repository
20 # this is now actually part of openpower-isa repository
25 python3 setup.py develop
# yes, develop, not install
27 # build and run libresoc litex simulation
29 python3 src
/soc
/simple
/issuer_verilog.py
--disable-svp64 \
30 src
/soc
/litex
/florent
/libresoc
/libresoc.v
31 python3 src
/soc
/litex
/florent
/sim.py
--cpu
=libresoc
33 # and with test gpio (useful for XICS IRC testing)
35 python3 src
/soc
/simple
/issuer_verilog.py \
36 src
/soc
/litex
/florent
/libresoc
/libresoc.v \
38 python3 src
/soc
/litex
/florent
/sim.py
--cpu
=libresoc \
39 --variant
=standardjtagtestgpio
42 python3 src
/soc
/simple
/issuer_verilog.py \
43 --debug
=jtag
--enable-core
--disable-pll \
44 --enable-xics
--disable-svp64 \
45 src
/soc
/litex
/florent
/libresoc
/libresoc.v
48 python3 src
/soc
/simple
/issuer_verilog.py \
49 --debug
=jtag
--enable-core
--enable-pll \
50 --enable-xics
--disable-svp64 \
51 src
/soc
/litex
/florent
/libresoc
/libresoc.v
54 python3 src
/soc
/simple
/issuer_verilog.py \
55 --debug
=jtag
--enable-core
--enable-pll \
56 --enable-xics
--enable-sram4x4kblock
--disable-svp64 \
57 src
/soc
/litex
/florent
/libresoc
/libresoc.v
59 # build the litex libresoc SoC without 4k SRAMs
60 ls180_verilog_build
: ls180_verilog
61 make
-C soc
/soc
/litex
/florent ls180
63 # build the litex libresoc SoC with 4k SRAMs
64 ls180_4ksram_verilog_build
: ls180_4k_verilog
65 make
-C soc
/soc
/litex
/florent ls1804k
67 # testing (usually done at install time)
69 python3 setup.py
test # could just run nosetest3...
72 $(PYTHON3
) setup.py sdist upload
74 # Minimal makefile for Sphinx documentation
77 # You can set these variables from the command line.
79 SPHINXBUILD
= sphinx-build
80 SPHINXPROJ
= Libre-SOC
84 # Put it first so that "make" without argument is like "make help".
86 @
$(SPHINXBUILD
) -M help
"$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS
) $(O
)
88 # copies all documentation to libre-soc (libre-soc admins only)
89 htmlupload
: clean html
90 rsync
-HPavz
--delete build
/html
/* \
91 libre-soc.org
:/var
/www
/libre-soc.org
/docs
/soc
/
93 # Catch-all target: route all unknown targets to Sphinx using the new
94 # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
96 echo
"catch-all falling through to sphinx for document building"
97 mkdir
-p
"$(SOURCEDIR)"/src
/gen
98 sphinx-apidoc
--ext-autodoc
-o
"$(SOURCEDIR)"/src
/gen .
/src
/soc
99 @
$(SPHINXBUILD
) -M
$@
"$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS
) $(O
)