yosys/Makefile

590 lines
18 KiB
Makefile
Raw Normal View History

2013-01-05 04:13:26 -06:00
CONFIG := clang
# CONFIG := gcc
2016-05-11 02:31:53 -05:00
# CONFIG := gcc-4.8
# CONFIG := emcc
2014-10-09 03:50:44 -05:00
# CONFIG := mxe
2016-08-16 15:44:38 -05:00
# CONFIG := msys2
2013-01-05 04:13:26 -06:00
2013-11-27 02:08:35 -06:00
# features (the more the better)
ENABLE_TCL := 1
2013-11-27 02:08:35 -06:00
ENABLE_ABC := 1
ENABLE_PLUGINS := 1
ENABLE_READLINE := 1
2014-03-09 14:40:04 -05:00
ENABLE_VERIFIC := 0
ENABLE_COVER := 1
2015-08-04 13:25:26 -05:00
ENABLE_LIBYOSYS := 0
2013-11-27 02:08:35 -06:00
# other configuration flags
ENABLE_GPROF := 0
2015-01-24 05:16:46 -06:00
ENABLE_NDEBUG := 0
LINK_CURSES := 0
2016-01-31 09:08:21 -06:00
# clang sanitizers
SANITIZER =
# SANITIZER = address
# SANITIZER = memory
# SANITIZER = undefined
# SANITIZER = cfi
PREFIX ?= /usr/local
2013-11-19 16:13:41 -06:00
INSTALL_SUDO :=
BINDIR := $(PREFIX)/bin
LIBDIR := $(PREFIX)/lib
DATDIR := $(PREFIX)/share/yosys
2015-02-07 12:04:06 -06:00
2014-10-09 03:50:44 -05:00
EXE =
2013-06-07 03:38:35 -05:00
OBJS =
2013-01-05 04:13:26 -06:00
GENFILES =
2014-10-17 05:11:15 -05:00
EXTRA_OBJS =
2013-03-28 10:53:40 -05:00
EXTRA_TARGETS =
2014-10-09 03:50:44 -05:00
TARGETS = yosys$(EXE) yosys-config
2013-01-05 04:13:26 -06:00
PRETTY = 1
2014-07-24 12:03:57 -05:00
SMALL = 0
# Unit test
UNITESTPATH := tests/unit
2013-01-05 04:13:26 -06:00
all: top-all
YOSYS_SRC := $(dir $(firstword $(MAKEFILE_LIST)))
VPATH := $(YOSYS_SRC)
CXXFLAGS += -Wall -Wextra -ggdb -I. -I"$(YOSYS_SRC)" -MD -D_YOSYS_ -fPIC -I$(PREFIX)/include
LDFLAGS += -L$(LIBDIR)
LDLIBS = -lstdc++ -lm
PKG_CONFIG ?= pkg-config
SED ?= sed
BISON ?= bison
2013-01-05 04:13:26 -06:00
ifeq (Darwin,$(findstring Darwin,$(shell uname)))
# homebrew search paths
ifneq ($(shell which brew),)
BREW_PREFIX := $(shell brew --prefix)/opt
CXXFLAGS += -I$(BREW_PREFIX)/readline/include
LDFLAGS += -L$(BREW_PREFIX)/readline/lib
PKG_CONFIG_PATH := $(BREW_PREFIX)/libffi/lib/pkgconfig:$(PKG_CONFIG_PATH)
PKG_CONFIG_PATH := $(BREW_PREFIX)/tcl-tk/lib/pkgconfig:$(PKG_CONFIG_PATH)
export PATH := $(BREW_PREFIX)/bison/bin:$(BREW_PREFIX)/gettext/bin:$(BREW_PREFIX)/flex/bin:$(PATH)
# macports search paths
else ifneq ($(shell which port),)
PORT_PREFIX := $(patsubst %/bin/port,%,$(shell which port))
CXXFLAGS += -I$(PORT_PREFIX)/include
LDFLAGS += -L$(PORT_PREFIX)/lib
PKG_CONFIG_PATH := $(PORT_PREFIX)/lib/pkgconfig:$(PKG_CONFIG_PATH)
export PATH := $(PORT_PREFIX)/bin:$(PATH)
endif
else
LDFLAGS += -rdynamic
LDLIBS += -lrt
endif
2016-11-03 04:31:51 -05:00
YOSYS_VER := 0.7+$(shell cd $(YOSYS_SRC) && test -e .git && { git log --author=clifford@clifford.at --oneline 61f6811.. | wc -l; })
GIT_REV := $(shell cd $(YOSYS_SRC) && git rev-parse --short HEAD 2> /dev/null || echo UNKNOWN)
OBJS = kernel/version_$(GIT_REV).o
2013-12-31 07:39:02 -06:00
# set 'ABCREV = default' to use abc/ as it is
2013-12-04 01:31:52 -06:00
#
# Note: If you do ABC development, make sure that 'abc' in this directory
# is just a symlink to your actual ABC working directory, as 'make mrproper'
# will remove the 'abc' directory and you do not want to accidentally
# delete your work on ABC..
2017-02-05 13:04:17 -06:00
ABCREV = a2fcd1cc61a6
ABCPULL = 1
ABCURL ?= https://bitbucket.org/alanmi/abc
2015-04-04 04:47:59 -05:00
ABCMKARGS = CC="$(CXX)" CXX="$(CXX)"
2013-10-03 09:03:30 -05:00
2016-03-19 14:02:40 -05:00
# set ABCEXTERNAL = <abc-command> to use an external ABC instance
# Note: The in-tree ABC (yosys-abc) will not be installed when ABCEXTERNAL is set.
ABCEXTERNAL ?=
define newline
endef
ifneq ($(wildcard Makefile.conf),)
$(info $(subst $$--$$,$(newline),$(shell sed 's,^,[Makefile.conf] ,; s,$$,$$--$$,;' < Makefile.conf | tr -d '\n' | sed 's,\$$--\$$$$,,')))
include Makefile.conf
endif
2013-01-05 04:13:26 -06:00
ifeq ($(CONFIG),clang)
2013-01-05 04:13:26 -06:00
CXX = clang
2016-01-31 12:55:48 -06:00
LD = clang++
CXXFLAGS += -std=c++11 -Os
2013-01-05 04:13:26 -06:00
2016-01-31 09:08:21 -06:00
ifneq ($(SANITIZER),)
$(info [Clang Sanitizer] $(SANITIZER))
CXXFLAGS += -g -O1 -fno-omit-frame-pointer -fno-optimize-sibling-calls -fsanitize=$(SANITIZER)
LDFLAGS += -g -fsanitize=$(SANITIZER)
ifeq ($(SANITIZER),address)
ENABLE_COVER := 0
endif
2016-01-31 12:55:48 -06:00
ifeq ($(SANITIZER),memory)
2016-04-05 06:25:05 -05:00
CXXFLAGS += -fPIE -fsanitize-memory-track-origins
LDFLAGS += -fPIE -fsanitize-memory-track-origins
2016-01-31 12:55:48 -06:00
endif
2016-01-31 09:08:21 -06:00
ifeq ($(SANITIZER),cfi)
CXXFLAGS += -flto
LDFLAGS += -flto
endif
endif
else ifeq ($(CONFIG),gcc)
2013-01-05 04:13:26 -06:00
CXX = gcc
2016-01-31 12:55:48 -06:00
LD = gcc
2016-05-11 02:31:53 -05:00
CXXFLAGS += -std=c++11 -Os
2013-01-05 04:13:26 -06:00
2016-05-11 02:31:53 -05:00
else ifeq ($(CONFIG),gcc-4.8)
CXX = gcc-4.8
LD = gcc-4.8
CXXFLAGS += -std=c++11 -Os
2013-01-05 04:13:26 -06:00
else ifeq ($(CONFIG),emcc)
CXX = emcc
2016-01-31 12:55:48 -06:00
LD = emcc
2015-02-15 10:14:09 -06:00
CXXFLAGS := -std=c++11 $(filter-out -fPIC -ggdb,$(CXXFLAGS))
2015-02-15 03:30:29 -06:00
EMCCFLAGS := -Os -Wno-warn-absolute-paths
2015-02-19 06:36:54 -06:00
EMCCFLAGS += --memory-init-file 0 --embed-file share -s NO_EXIT_RUNTIME=1
EMCCFLAGS += -s EXPORTED_FUNCTIONS="['_main','_run','_prompt','_errmsg']"
EMCCFLAGS += -s TOTAL_MEMORY=128*1024*1024
2015-02-15 03:30:29 -06:00
# https://github.com/kripken/emscripten/blob/master/src/settings.js
2015-02-13 05:32:04 -06:00
CXXFLAGS += $(EMCCFLAGS)
LDFLAGS += $(EMCCFLAGS)
2015-02-15 03:30:29 -06:00
LDLIBS =
EXE = .js
2015-02-15 10:14:09 -06:00
TARGETS := $(filter-out yosys-config,$(TARGETS))
2015-02-16 05:41:48 -06:00
EXTRA_TARGETS += yosysjs-$(YOSYS_VER).zip
2015-02-15 15:53:41 -06:00
viz.js:
wget -O viz.js.part https://github.com/mdaines/viz.js/releases/download/0.0.3/viz.js
mv viz.js.part viz.js
2015-02-15 10:14:09 -06:00
2015-02-16 05:41:48 -06:00
yosysjs-$(YOSYS_VER).zip: yosys.js viz.js misc/yosysjs/*
rm -rf yosysjs-$(YOSYS_VER) yosysjs-$(YOSYS_VER).zip
mkdir -p yosysjs-$(YOSYS_VER)
cp viz.js misc/yosysjs/* yosys.js yosysjs-$(YOSYS_VER)/
zip -r yosysjs-$(YOSYS_VER).zip yosysjs-$(YOSYS_VER)
yosys.html: misc/yosys.html
$(P) cp misc/yosys.html yosys.html
2014-10-09 03:50:44 -05:00
else ifeq ($(CONFIG),mxe)
2016-05-07 03:53:18 -05:00
CXX = /usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-gcc
LD = /usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-gcc
2016-05-11 02:31:53 -05:00
CXXFLAGS += -std=c++11 -Os -D_POSIX_SOURCE
2014-10-09 03:50:44 -05:00
CXXFLAGS := $(filter-out -fPIC,$(CXXFLAGS))
2014-10-11 04:35:54 -05:00
LDFLAGS := $(filter-out -rdynamic,$(LDFLAGS)) -s
2014-10-09 03:50:44 -05:00
LDLIBS := $(filter-out -lrt,$(LDLIBS))
2017-01-11 03:56:27 -06:00
ABCMKARGS += ARCHFLAGS="-DSIZEOF_VOID_P=4 -DSIZEOF_LONG=4 -DSIZEOF_INT=4 -DWIN32_NO_DLL -DHAVE_STRUCT_TIMESPEC -fpermissive -w"
2016-02-13 08:43:23 -06:00
ABCMKARGS += LIBS="lib/x86/pthreadVC2.lib -s" ABC_USE_NO_READLINE=1 CC="$(CXX)" CXX="$(CXX)"
2014-10-09 03:50:44 -05:00
EXE = .exe
2016-08-16 13:41:37 -05:00
else ifeq ($(CONFIG),msys2)
CXX = i686-w64-mingw32-gcc
LD = i686-w64-mingw32-gcc
CXXFLAGS += -std=c++11 -Os -D_POSIX_SOURCE -DYOSYS_WIN32_UNIX_DIR
CXXFLAGS := $(filter-out -fPIC,$(CXXFLAGS))
LDFLAGS := $(filter-out -rdynamic,$(LDFLAGS)) -s
LDLIBS := $(filter-out -lrt,$(LDLIBS))
2017-01-11 03:56:27 -06:00
ABCMKARGS += ARCHFLAGS="-DSIZEOF_VOID_P=4 -DSIZEOF_LONG=4 -DSIZEOF_INT=4 -DWIN32_NO_DLL -DHAVE_STRUCT_TIMESPEC -fpermissive -w"
2016-08-16 13:41:37 -05:00
ABCMKARGS += LIBS="lib/x86/pthreadVC2.lib -s" ABC_USE_NO_READLINE=0 CC="$(CXX)" CXX="$(CXX)"
EXE = .exe
else ifneq ($(CONFIG),none)
2016-08-16 13:41:37 -05:00
$(error Invalid CONFIG setting '$(CONFIG)'. Valid values: clang, gcc, gcc-4.8, emcc, mxe, msys2)
endif
2015-08-04 13:25:26 -05:00
ifeq ($(ENABLE_LIBYOSYS),1)
TARGETS += libyosys.so
2015-08-04 06:22:49 -05:00
endif
ifeq ($(ENABLE_READLINE),1)
CXXFLAGS += -DYOSYS_ENABLE_READLINE
LDLIBS += -lreadline
ifeq ($(LINK_CURSES),1)
LDLIBS += -lcurses
ABCMKARGS += "ABC_READLINE_LIBRARIES=-lcurses -lreadline"
endif
2014-10-11 03:59:11 -05:00
ifeq ($(CONFIG),mxe)
LDLIBS += -lpdcurses
endif
endif
ifeq ($(ENABLE_PLUGINS),1)
CXXFLAGS += $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --silence-errors --cflags libffi) -DYOSYS_ENABLE_PLUGINS
LDLIBS += $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --silence-errors --libs libffi || echo -lffi) -ldl
endif
ifeq ($(ENABLE_TCL),1)
TCL_VERSION ?= tcl$(shell bash -c "tclsh <(echo 'puts [info tclversion]')")
2014-03-09 14:40:04 -05:00
TCL_INCLUDE ?= /usr/include/$(TCL_VERSION)
CXXFLAGS += $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --silence-errors --cflags tcl || echo -I$(TCL_INCLUDE)) -DYOSYS_ENABLE_TCL
LDLIBS += $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --silence-errors --libs tcl || echo -l$(TCL_VERSION))
endif
ifeq ($(ENABLE_GPROF),1)
2014-08-16 19:24:53 -05:00
CXXFLAGS += -pg
LDFLAGS += -pg
endif
2015-01-24 05:16:46 -06:00
ifeq ($(ENABLE_NDEBUG),1)
CXXFLAGS := -O3 -DNDEBUG $(filter-out -Os,$(CXXFLAGS))
endif
2013-11-27 02:08:35 -06:00
ifeq ($(ENABLE_ABC),1)
2014-09-14 09:09:06 -05:00
CXXFLAGS += -DYOSYS_ENABLE_ABC
ifeq ($(ABCEXTERNAL),)
TARGETS += yosys-abc$(EXE)
endif
2013-11-27 02:08:35 -06:00
endif
2014-03-09 14:40:04 -05:00
ifeq ($(ENABLE_VERIFIC),1)
VERIFIC_DIR ?= /usr/local/src/verific_lib_eval
2015-11-12 12:28:14 -06:00
VERIFIC_COMPONENTS ?= verilog vhdl database util containers sdf
CXXFLAGS += $(patsubst %,-I$(VERIFIC_DIR)/%,$(VERIFIC_COMPONENTS)) -DYOSYS_ENABLE_VERIFIC
2014-03-09 14:40:04 -05:00
LDLIBS += $(patsubst %,$(VERIFIC_DIR)/%/*-linux.a,$(VERIFIC_COMPONENTS))
endif
ifeq ($(ENABLE_COVER),1)
CXXFLAGS += -DYOSYS_ENABLE_COVER
endif
2015-01-07 17:23:18 -06:00
define add_share_file
2015-02-07 17:01:31 -06:00
EXTRA_TARGETS += $(subst //,/,$(1)/$(notdir $(2)))
$(subst //,/,$(1)/$(notdir $(2))): $(2)
2015-01-07 17:23:18 -06:00
$$(P) mkdir -p $(1)
$$(Q) cp "$(YOSYS_SRC)"/$(2) $(subst //,/,$(1)/$(notdir $(2)))
2015-01-07 17:23:18 -06:00
endef
define add_gen_share_file
EXTRA_TARGETS += $(subst //,/,$(1)/$(notdir $(2)))
$(subst //,/,$(1)/$(notdir $(2))): $(2)
$$(P) mkdir -p $(1)
$$(Q) cp $(2) $(subst //,/,$(1)/$(notdir $(2)))
endef
2015-02-07 12:04:06 -06:00
define add_include_file
$(eval $(call add_share_file,$(dir share/include/$(1)),$(1)))
endef
2014-07-24 10:15:01 -05:00
ifeq ($(PRETTY), 1)
2014-07-24 20:12:14 -05:00
P_STATUS = 0
P_OFFSET = 0
P_UPDATE = $(eval P_STATUS=$(shell echo $(OBJS) yosys$(EXE) | gawk 'BEGIN { RS = " "; I = $(P_STATUS)+0; } $$1 == "$@" && NR > I { I = NR; } END { print I; }'))
P_SHOW = [$(shell gawk "BEGIN { N=$(words $(OBJS) yosys$(EXE)); printf \"%3d\", $(P_OFFSET)+90*$(P_STATUS)/N; exit; }")%]
2014-07-24 20:12:14 -05:00
P = @echo "$(if $(findstring $@,$(TARGETS) $(EXTRA_TARGETS)),$(eval P_OFFSET = 10))$(call P_UPDATE)$(call P_SHOW) Building $@";
2014-07-24 10:15:01 -05:00
Q = @
S = -s
else
2014-07-24 20:12:14 -05:00
P_SHOW = ->
P =
Q =
S =
2014-07-24 10:15:01 -05:00
endif
2015-02-07 12:04:06 -06:00
$(eval $(call add_include_file,kernel/yosys.h))
$(eval $(call add_include_file,kernel/hashlib.h))
$(eval $(call add_include_file,kernel/log.h))
$(eval $(call add_include_file,kernel/rtlil.h))
$(eval $(call add_include_file,kernel/register.h))
$(eval $(call add_include_file,kernel/celltypes.h))
2016-09-07 06:43:57 -05:00
$(eval $(call add_include_file,kernel/celledges.h))
2015-02-07 12:04:06 -06:00
$(eval $(call add_include_file,kernel/consteval.h))
$(eval $(call add_include_file,kernel/sigtools.h))
$(eval $(call add_include_file,kernel/modtools.h))
$(eval $(call add_include_file,kernel/macc.h))
$(eval $(call add_include_file,kernel/utils.h))
$(eval $(call add_include_file,kernel/satgen.h))
$(eval $(call add_include_file,libs/ezsat/ezsat.h))
$(eval $(call add_include_file,libs/ezsat/ezminisat.h))
$(eval $(call add_include_file,libs/sha1/sha1.h))
$(eval $(call add_include_file,passes/fsm/fsmdata.h))
2016-03-22 08:46:10 -05:00
$(eval $(call add_include_file,frontends/ast/ast.h))
2015-02-07 12:04:06 -06:00
$(eval $(call add_include_file,backends/ilang/ilang_backend.h))
2016-07-24 06:59:57 -05:00
OBJS += kernel/driver.o kernel/register.o kernel/rtlil.o kernel/log.o kernel/calc.o kernel/yosys.o
OBJS += kernel/cellaigs.o kernel/celledges.o
2015-02-07 12:04:06 -06:00
kernel/log.o: CXXFLAGS += -DYOSYS_SRC='"$(YOSYS_SRC)"'
kernel/yosys.o: CXXFLAGS += -DYOSYS_DATDIR='"$(DATDIR)"'
2013-06-07 03:38:35 -05:00
OBJS += libs/bigint/BigIntegerAlgorithms.o libs/bigint/BigInteger.o libs/bigint/BigIntegerUtils.o
OBJS += libs/bigint/BigUnsigned.o libs/bigint/BigUnsignedInABase.o
OBJS += libs/sha1/sha1.o
2014-07-24 12:03:57 -05:00
ifneq ($(SMALL),1)
2013-06-07 03:38:35 -05:00
OBJS += libs/subcircuit/subcircuit.o
OBJS += libs/ezsat/ezsat.o
2013-06-07 03:38:35 -05:00
OBJS += libs/ezsat/ezminisat.o
OBJS += libs/minisat/Options.o
OBJS += libs/minisat/SimpSolver.o
OBJS += libs/minisat/Solver.o
OBJS += libs/minisat/System.o
2013-06-07 03:38:35 -05:00
include $(YOSYS_SRC)/frontends/*/Makefile.inc
include $(YOSYS_SRC)/passes/*/Makefile.inc
include $(YOSYS_SRC)/backends/*/Makefile.inc
include $(YOSYS_SRC)/techlibs/*/Makefile.inc
2013-01-05 04:13:26 -06:00
2014-07-24 12:03:57 -05:00
else
include frontends/verilog/Makefile.inc
include frontends/ilang/Makefile.inc
include frontends/ast/Makefile.inc
2015-05-17 07:44:28 -05:00
include frontends/blif/Makefile.inc
2014-07-24 12:03:57 -05:00
OBJS += passes/hierarchy/hierarchy.o
OBJS += passes/cmds/select.o
OBJS += passes/cmds/show.o
OBJS += passes/cmds/stat.o
OBJS += passes/cmds/cover.o
2014-08-16 19:24:53 -05:00
OBJS += passes/cmds/design.o
2014-08-22 06:58:36 -05:00
OBJS += passes/cmds/plugin.o
2014-07-24 12:03:57 -05:00
include passes/proc/Makefile.inc
include passes/opt/Makefile.inc
include passes/techmap/Makefile.inc
include backends/verilog/Makefile.inc
include backends/ilang/Makefile.inc
2014-08-16 19:24:53 -05:00
include techlibs/common/Makefile.inc
2014-07-24 12:03:57 -05:00
endif
2013-03-28 10:53:40 -05:00
top-all: $(TARGETS) $(EXTRA_TARGETS)
2014-07-24 20:12:14 -05:00
@echo ""
2014-07-26 14:34:19 -05:00
@echo " Build successful."
2014-07-24 20:12:14 -05:00
@echo ""
2013-01-05 04:13:26 -06:00
2015-06-11 08:48:40 -05:00
ifeq ($(CONFIG),emcc)
yosys.js: $(filter-out yosysjs-$(YOSYS_VER).zip,$(EXTRA_TARGETS))
endif
2014-10-09 03:50:44 -05:00
yosys$(EXE): $(OBJS)
2016-01-31 12:55:48 -06:00
$(P) $(LD) -o yosys$(EXE) $(LDFLAGS) $(OBJS) $(LDLIBS)
2015-08-04 06:22:49 -05:00
2015-08-04 13:25:26 -05:00
libyosys.so: $(filter-out kernel/driver.o,$(OBJS))
2016-01-31 12:55:48 -06:00
$(P) $(LD) -o libyosys.so -shared -Wl,-soname,libyosys.so $(LDFLAGS) $^ $(LDLIBS)
2014-07-24 10:15:01 -05:00
%.o: %.cc
$(Q) mkdir -p $(dir $@)
$(P) $(CXX) -o $@ -c $(CPPFLAGS) $(CXXFLAGS) $<
2014-07-24 10:15:01 -05:00
%.o: %.cpp
$(Q) mkdir -p $(dir $@)
$(P) $(CXX) -o $@ -c $(CPPFLAGS) $(CXXFLAGS) $<
2013-01-05 04:13:26 -06:00
2016-10-14 02:35:18 -05:00
YOSYS_VER_STR := Yosys $(YOSYS_VER) (git sha1 $(GIT_REV), $(notdir $(CXX)) $(shell \
$(CXX) --version | tr ' ()' '\n' | grep '^[0-9]' | head -n1) $(filter -f% -m% -O% -DNDEBUG,$(CXXFLAGS)))
kernel/version_$(GIT_REV).cc: $(YOSYS_SRC)/Makefile
2014-07-24 10:15:01 -05:00
$(P) rm -f kernel/version_*.o kernel/version_*.d kernel/version_*.cc
2016-10-14 02:35:18 -05:00
$(Q) mkdir -p kernel && echo "namespace Yosys { extern const char *yosys_version_str; const char *yosys_version_str=\"$(YOSYS_VER_STR)\"; }" > kernel/version_$(GIT_REV).cc
2014-10-18 07:15:05 -05:00
yosys-config: misc/yosys-config.in
$(P) $(SED) -e 's#@CXXFLAGS@#$(subst -I. -I"$(YOSYS_SRC)",-I"$(DATDIR)/include",$(CXXFLAGS))#;' \
-e 's#@CXX@#$(CXX)#;' -e 's#@LDFLAGS@#$(LDFLAGS)#;' -e 's#@LDLIBS@#$(LDLIBS)#;' \
-e 's#@BINDIR@#$(BINDIR)#;' -e 's#@DATDIR@#$(DATDIR)#;' < $< > yosys-config
2014-07-24 10:15:01 -05:00
$(Q) chmod +x yosys-config
abc/abc-$(ABCREV)$(EXE):
2014-07-24 10:15:01 -05:00
$(P)
2013-12-03 09:50:14 -06:00
ifneq ($(ABCREV),default)
2014-07-26 04:55:58 -05:00
$(Q) if ( cd abc 2> /dev/null && hg identify; ) | grep -q +; then \
echo 'REEBE: NOP pbagnvaf ybpny zbqvsvpngvbaf! Frg NOPERI=qrsnhyg va Lbflf Znxrsvyr!' | tr 'A-Za-z' 'N-ZA-Mn-za-m'; false; \
fi
2014-07-26 04:55:58 -05:00
$(Q) if test "`cd abc 2> /dev/null && hg identify | cut -f1 -d' '`" != "$(ABCREV)"; then \
test $(ABCPULL) -ne 0 || { echo 'REEBE: NOP abg hc gb qngr naq NOPCHYY frg gb 0 va Znxrsvyr!' | tr 'A-Za-z' 'N-ZA-Mn-za-m'; exit 1; }; \
echo "Pulling ABC from $(ABCURL):"; set -x; \
test -d abc || hg clone $(ABCURL) abc; \
2015-01-20 17:17:53 -06:00
cd abc && $(MAKE) DEP= clean && hg pull && hg update -r $(ABCREV); \
2013-11-27 02:08:35 -06:00
fi
2013-12-03 09:50:14 -06:00
endif
2014-07-24 10:15:01 -05:00
$(Q) rm -f abc/abc-[0-9a-f]*
$(Q) cd abc && $(MAKE) $(S) $(ABCMKARGS) PROG="abc-$(ABCREV)$(EXE)" MSG_PREFIX="$(eval P_OFFSET = 5)$(call P_SHOW)$(eval P_OFFSET = 10) ABC: "
2013-11-27 02:08:35 -06:00
2013-12-04 01:31:52 -06:00
ifeq ($(ABCREV),default)
.PHONY: abc/abc-$(ABCREV)$(EXE)
2013-12-04 01:31:52 -06:00
endif
yosys-abc$(EXE): abc/abc-$(ABCREV)$(EXE)
$(P) cp abc/abc-$(ABCREV)$(EXE) yosys-abc$(EXE)
2013-11-27 02:08:35 -06:00
ifneq ($(SEED),)
SEEDOPT="-S $(SEED)"
else
SEEDOPT=""
endif
2014-03-12 04:46:27 -05:00
test: $(TARGETS) $(EXTRA_TARGETS)
+cd tests/simple && bash run-test.sh $(SEEDOPT)
+cd tests/hana && bash run-test.sh $(SEEDOPT)
+cd tests/asicworld && bash run-test.sh $(SEEDOPT)
+cd tests/realmath && bash run-test.sh $(SEEDOPT)
+cd tests/share && bash run-test.sh $(SEEDOPT)
+cd tests/fsm && bash run-test.sh $(SEEDOPT)
+cd tests/techmap && bash run-test.sh
+cd tests/memories && bash run-test.sh $(SEEDOPT)
+cd tests/bram && bash run-test.sh $(SEEDOPT)
+cd tests/various && bash run-test.sh
+cd tests/sat && bash run-test.sh
@echo ""
@echo " Passed \"make test\"."
@echo ""
2013-01-05 04:13:26 -06:00
2014-07-25 06:15:46 -05:00
VALGRIND ?= valgrind --error-exitcode=1 --leak-check=full --show-reachable=yes --errors-for-leak-kinds=all
vgtest: $(TARGETS) $(EXTRA_TARGETS)
2015-02-08 08:13:51 -06:00
$(VALGRIND) ./yosys -p 'setattr -mod -unset top; synth' $$( ls tests/simple/*.v | grep -v repwhile.v )
@echo ""
@echo " Passed \"make vgtest\"."
@echo ""
2014-07-25 06:15:46 -05:00
2014-07-23 19:11:12 -05:00
vloghtb: $(TARGETS) $(EXTRA_TARGETS)
+cd tests/vloghtb && bash run-test.sh
@echo ""
@echo " Passed \"make vloghtb\"."
@echo ""
2014-07-23 19:11:12 -05:00
# Unit test
unit-test: libyosys.so
@$(MAKE) -C $(UNITESTPATH) CXX="$(CXX)" CPPFLAGS="$(CPPFLAGS)" \
CXXFLAGS="$(CXXFLAGS)" LDLIBS="$(LDLIBS)" ROOTPATH="$(CURDIR)"
clean-unit-test:
@$(MAKE) -C $(UNITESTPATH) clean
2013-11-23 22:05:50 -06:00
install: $(TARGETS) $(EXTRA_TARGETS)
$(INSTALL_SUDO) mkdir -p $(DESTDIR)$(BINDIR)
$(INSTALL_SUDO) install $(TARGETS) $(DESTDIR)$(BINDIR)
$(INSTALL_SUDO) mkdir -p $(DESTDIR)$(DATDIR)
$(INSTALL_SUDO) cp -r share/. $(DESTDIR)$(DATDIR)/.
2015-08-04 13:25:26 -05:00
ifeq ($(ENABLE_LIBYOSYS),1)
$(INSTALL_SUDO) cp libyosys.so $(DESTDIR)$(LIBDIR)
2015-08-04 06:22:49 -05:00
$(INSTALL_SUDO) ldconfig
endif
2013-01-05 04:13:26 -06:00
2015-02-07 10:46:46 -06:00
uninstall:
$(INSTALL_SUDO) rm -vf $(addprefix $(DESTDIR)$(BINDIR),$(notdir $(TARGETS)))
$(INSTALL_SUDO) rm -rvf $(DESTDIR)$(DATDIR)
2015-08-04 13:25:26 -05:00
ifeq ($(ENABLE_LIBYOSYS),1)
$(INSTALL_SUDO) rm -vf $(DESTDIR)$(LIBDIR)/libyosys.so
2015-08-04 06:22:49 -05:00
endif
2015-02-07 10:46:46 -06:00
2015-02-09 09:36:37 -06:00
update-manual: $(TARGETS) $(EXTRA_TARGETS)
cd manual && ../yosys -p 'help -write-tex-command-reference-manual'
manual: $(TARGETS) $(EXTRA_TARGETS)
cd manual && bash appnotes.sh
cd manual && bash presentation.sh
2014-01-27 10:08:19 -06:00
cd manual && bash manual.sh
2013-07-20 08:19:12 -05:00
2013-01-05 04:13:26 -06:00
clean:
2014-04-04 17:39:03 -05:00
rm -rf share
if test -d manual; then cd manual && sh clean.sh; fi
2014-10-17 05:11:15 -05:00
rm -f $(OBJS) $(GENFILES) $(TARGETS) $(EXTRA_TARGETS) $(EXTRA_OBJS)
2014-04-04 17:39:03 -05:00
rm -f kernel/version_*.o kernel/version_*.cc abc/abc-[0-9a-f]*
rm -f libs/*/*.d frontends/*/*.d passes/*/*.d backends/*/*.d kernel/*.d techlibs/*/*.d
2013-01-05 04:13:26 -06:00
2014-07-24 20:17:06 -05:00
clean-abc:
2015-01-20 17:17:53 -06:00
$(MAKE) -C abc DEP= clean
rm -f yosys-abc$(EXE) abc/abc-[0-9a-f]*
2014-07-24 20:17:06 -05:00
2013-01-05 04:13:26 -06:00
mrproper: clean
git clean -xdf
2013-01-05 04:13:26 -06:00
qtcreator:
{ for file in $(basename $(OBJS)); do \
for prefix in cc y l; do if [ -f $${file}.$${prefix} ]; then echo $$file.$${prefix}; fi; done \
done; find backends frontends kernel libs passes -type f \( -name '*.h' -o -name '*.hh' \); } > qtcreator.files
{ echo .; find backends frontends kernel libs passes -type f \( -name '*.h' -o -name '*.hh' \) -printf '%h\n' | sort -u; } > qtcreator.includes
2013-01-05 04:13:26 -06:00
touch qtcreator.config qtcreator.creator
vcxsrc: $(GENFILES) $(EXTRA_TARGETS)
rm -rf yosys-win32-vcxsrc-$(YOSYS_VER){,.zip}
2015-02-09 05:48:15 -06:00
set -e; for f in `ls $(filter %.cc %.cpp,$(GENFILES)) $(addsuffix .cc,$(basename $(OBJS))) $(addsuffix .cpp,$(basename $(OBJS))) 2> /dev/null`; do \
2016-05-11 02:31:53 -05:00
echo "Analyse: $$f" >&2; cpp -std=c++11 -MM -I. -D_YOSYS_ $$f; done | sed 's,.*:,,; s,//*,/,g; s,/[^/]*/\.\./,/,g; y, \\,\n\n,;' | grep '^[^/]' | sort -u | grep -v kernel/version_ > srcfiles.txt
bash misc/create_vcxsrc.sh yosys-win32-vcxsrc $(YOSYS_VER) $(GIT_REV)
echo "namespace Yosys { extern const char *yosys_version_str; const char *yosys_version_str=\"Yosys (Version Information Unavailable)\"; }" > kernel/version.cc
zip yosys-win32-vcxsrc-$(YOSYS_VER)/genfiles.zip $(GENFILES) kernel/version.cc
zip -r yosys-win32-vcxsrc-$(YOSYS_VER).zip yosys-win32-vcxsrc-$(YOSYS_VER)/
rm -f srcfiles.txt kernel/version.cc
2014-10-11 04:53:36 -05:00
ifeq ($(CONFIG),mxe)
mxebin: $(TARGETS) $(EXTRA_TARGETS)
rm -rf yosys-win32-mxebin-$(YOSYS_VER){,.zip}
2014-10-18 08:17:33 -05:00
mkdir -p yosys-win32-mxebin-$(YOSYS_VER)
cp -r yosys.exe share/ yosys-win32-mxebin-$(YOSYS_VER)/
2014-10-12 07:48:19 -05:00
ifeq ($(ENABLE_ABC),1)
2014-10-18 08:17:33 -05:00
cp -r yosys-abc.exe abc/lib/x86/pthreadVC2.dll yosys-win32-mxebin-$(YOSYS_VER)/
2014-10-12 07:48:19 -05:00
endif
2014-10-18 08:17:33 -05:00
echo -en 'This is Yosys $(YOSYS_VER) for Win32.\r\n' > yosys-win32-mxebin-$(YOSYS_VER)/readme.txt
echo -en 'Documentation at http://www.clifford.at/yosys/.\r\n' >> yosys-win32-mxebin-$(YOSYS_VER)/readme.txt
zip -r yosys-win32-mxebin-$(YOSYS_VER).zip yosys-win32-mxebin-$(YOSYS_VER)/
2014-10-11 04:53:36 -05:00
endif
2013-03-07 10:34:40 -06:00
config-clean: clean
rm -f Makefile.conf
config-clang: clean
echo 'CONFIG := clang' > Makefile.conf
2013-03-07 10:34:40 -06:00
config-gcc: clean
echo 'CONFIG := gcc' > Makefile.conf
2013-03-07 10:34:40 -06:00
2016-05-11 02:31:53 -05:00
config-gcc-4.8: clean
echo 'CONFIG := gcc-4.8' > Makefile.conf
2014-07-23 19:12:24 -05:00
config-emcc: clean
echo 'CONFIG := emcc' > Makefile.conf
echo 'ENABLE_TCL := 0' >> Makefile.conf
echo 'ENABLE_ABC := 0' >> Makefile.conf
echo 'ENABLE_PLUGINS := 0' >> Makefile.conf
echo 'ENABLE_READLINE := 0' >> Makefile.conf
2014-10-09 03:50:44 -05:00
config-mxe: clean
echo 'CONFIG := mxe' > Makefile.conf
echo 'ENABLE_TCL := 0' >> Makefile.conf
echo 'ENABLE_PLUGINS := 0' >> Makefile.conf
2014-10-18 11:21:33 -05:00
echo 'ENABLE_READLINE := 0' >> Makefile.conf
2014-10-09 03:50:44 -05:00
2016-08-16 13:41:37 -05:00
config-msys2: clean
echo 'CONFIG := msys2' > Makefile.conf
config-gprof: clean
echo 'CONFIG := gcc' > Makefile.conf
echo 'ENABLE_GPROF := 1' >> Makefile.conf
2013-11-19 16:13:41 -06:00
config-sudo:
echo "INSTALL_SUDO := sudo" >> Makefile.conf
echo-yosys-ver:
@echo "$(YOSYS_VER)"
echo-git-rev:
@echo "$(GIT_REV)"
2013-03-07 10:34:40 -06:00
-include libs/*/*.d
2013-01-05 04:13:26 -06:00
-include frontends/*/*.d
-include passes/*/*.d
-include backends/*/*.d
-include kernel/*.d
2014-02-11 05:58:08 -06:00
-include techlibs/*/*.d
2013-01-05 04:13:26 -06:00
2013-07-20 08:19:12 -05:00
.PHONY: all top-all abc test install install-abc manual clean mrproper qtcreator
2016-05-11 02:31:53 -05:00
.PHONY: config-clean config-clang config-gcc config-gcc-4.8 config-gprof config-sudo
2016-08-16 15:44:38 -05:00