aboutsummaryrefslogtreecommitdiffstats
path: root/manual/PRESENTATION_ExAdv/addshift_test.v
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-12-22 20:12:18 +0100
committerGitHub <noreply@github.com>2018-12-22 20:12:18 +0100
commite5eb3d2c8ace00aeedec410d17a4972a76782089 (patch)
tree0c9b4c652028fd41df3e5d2cc1399007083f1c45 /manual/PRESENTATION_ExAdv/addshift_test.v
parentee8a7589e09efeb38cbc5ee6fd241758d6637fe2 (diff)
parent182d84ad54cff315e7afb07f5353a477e4c410f4 (diff)
downloadyosys-e5eb3d2c8ace00aeedec410d17a4972a76782089.tar.gz
yosys-e5eb3d2c8ace00aeedec410d17a4972a76782089.tar.bz2
yosys-e5eb3d2c8ace00aeedec410d17a4972a76782089.zip
Merge pull request #757 from whitequark/manual_mem
manual: document $meminit cell and memory_* passes
Diffstat (limited to 'manual/PRESENTATION_ExAdv/addshift_test.v')
0 files changed, 0 insertions, 0 deletions
ght .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
XEN_ROOT = ../..
include $(XEN_ROOT)/tools/Rules.mk

.PHONY: all
all: build
.PHONY: build
build:
	CC="$(CC)" CFLAGS="$(CFLAGS)" python setup.py build

.PHONY: install
ifndef XEN_PYTHON_NATIVE_INSTALL
install: LIBPATH=$(shell PYTHONPATH=../python/xen/util python -c "import auxbin; print auxbin.libpath()")
install: all
	CC="$(CC)" CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" --prefix="" --install-lib="$(DESTDIR)$(LIBPATH)/python"
	$(INSTALL_DIR) $(DESTDIR)/var/run/xend/boot
else
install: all
	CC="$(CC)" CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)"
	$(INSTALL_DIR) $(DESTDIR)/var/run/xend/boot
endif

.PHONY: clean
clean:
	rm -rf build tmp *.pyc *.pyo *.o *.a *~ a.out