2013-01-05 04:13:26 -06:00
2024-03-07 16:09:03 -06:00
CONFIG := none
# CONFIG := clang
2014-07-31 16:14:17 -05:00
# CONFIG := gcc
2019-05-27 13:38:44 -05:00
# CONFIG := afl-gcc
2019-11-11 03:23:06 -06:00
# CONFIG := wasi
2014-10-09 03:50:44 -05:00
# CONFIG := mxe
2020-12-26 22:37:46 -06:00
# CONFIG := msys2-32
2018-06-27 15:33:34 -05:00
# CONFIG := msys2-64
2013-01-05 04:13:26 -06:00
2013-11-27 02:08:35 -06:00
# features (the more the better)
2013-03-28 10:50:50 -05:00
ENABLE_TCL := 1
2013-11-27 02:08:35 -06:00
ENABLE_ABC := 1
2019-03-11 03:08:36 -05:00
ENABLE_GLOB := 1
2014-08-22 09:09:13 -05:00
ENABLE_PLUGINS := 1
ENABLE_READLINE := 1
2017-11-07 19:54:24 -06:00
ENABLE_EDITLINE := 0
2020-12-27 19:24:41 -06:00
ENABLE_GHDL := 0
2014-03-09 14:40:04 -05:00
ENABLE_VERIFIC := 0
2024-06-11 08:32:16 -05:00
ENABLE_VERIFIC_SYSTEMVERILOG := 1
ENABLE_VERIFIC_VHDL := 1
ENABLE_VERIFIC_HIER_TREE := 1
2024-07-09 02:11:59 -05:00
ENABLE_VERIFIC_YOSYSHQ_EXTENSIONS := 0
2022-10-04 02:18:44 -05:00
ENABLE_VERIFIC_EDIF := 0
2022-10-31 04:15:05 -05:00
ENABLE_VERIFIC_LIBERTY := 0
2014-12-26 12:28:52 -06:00
ENABLE_COVER := 1
2019-04-22 07:59:30 -05:00
ENABLE_LIBYOSYS := 0
2019-07-26 04:23:58 -05:00
ENABLE_ZLIB := 1
2013-11-27 02:08:35 -06:00
2018-06-22 04:15:03 -05:00
# python wrappers
2019-04-22 07:49:17 -05:00
ENABLE_PYOSYS := 0
2018-06-22 04:15:03 -05:00
2013-11-27 02:08:35 -06:00
# other configuration flags
2018-08-27 06:27:05 -05:00
ENABLE_GCOV := 0
2013-03-28 10:50:50 -05:00
ENABLE_GPROF := 0
2018-09-19 03:32:34 -05:00
ENABLE_DEBUG := 0
2024-08-05 12:28:09 -05:00
ENABLE_LTO := 0
2020-07-04 13:59:39 -05:00
ENABLE_CCACHE := 0
2020-11-19 12:23:54 -06:00
# sccache is not always a drop-in replacement for ccache in practice
ENABLE_SCCACHE := 0
2024-09-06 01:47:43 -05:00
ENABLE_FUNCTIONAL_TESTS := 0
2016-11-22 00:11:58 -06:00
LINK_CURSES := 0
2017-07-17 16:21:59 -05:00
LINK_TERMCAP := 0
2017-11-14 04:19:21 -06:00
LINK_ABC := 0
2019-11-11 03:23:06 -06:00
# Needed for environments that can't run executables (i.e. emscripten, wasm)
DISABLE_SPAWN := 0
# Needed for environments that don't have proper thread support (i.e. emscripten, wasm--for now)
2018-05-19 00:42:24 -05:00
DISABLE_ABC_THREADS := 0
2013-03-28 10:50:50 -05:00
2016-01-31 09:08:21 -06:00
# clang sanitizers
SANITIZER =
# SANITIZER = address
# SANITIZER = memory
# SANITIZER = undefined
# SANITIZER = cfi
2024-07-09 04:25:16 -05:00
# Prefer using ENABLE_DEBUG over setting these
2024-07-08 12:19:10 -05:00
OPT_LEVEL := -O3
2024-07-22 13:59:56 -05:00
GCC_LTO :=
2024-07-09 04:25:16 -05:00
CLANG_LTO := -flto= thin
2020-04-24 18:26:26 -05:00
PROGRAM_PREFIX :=
2016-01-31 09:08:21 -06:00
2018-05-06 08:19:44 -05:00
OS := $( shell uname -s)
2015-10-10 17:56:20 -05:00
PREFIX ?= /usr/local
2013-11-19 16:13:41 -06:00
INSTALL_SUDO :=
2022-10-31 03:10:46 -05:00
i f n e q ( $( filter MINGW %,$ ( OS ) ) , )
OS := MINGW
e n d i f
2013-11-04 04:15:15 -06:00
2019-05-29 11:57:03 -05:00
i f n e q ( $( wildcard Makefile .conf ) , )
i n c l u d e M a k e f i l e . c o n f
e n d i f
2020-03-25 04:02:56 -05:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
ENABLE_LIBYOSYS := 1
e n d i f
2016-03-24 04:18:21 -05:00
BINDIR := $( PREFIX) /bin
2020-04-10 08:02:48 -05:00
LIBDIR := $( PREFIX) /lib/$( PROGRAM_PREFIX) yosys
2020-04-10 03:38:40 -05:00
DATDIR := $( PREFIX) /share/$( PROGRAM_PREFIX) 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 =
2020-04-10 03:38:40 -05:00
TARGETS = $( PROGRAM_PREFIX) yosys$( EXE) $( PROGRAM_PREFIX) yosys-config
2013-01-05 04:13:26 -06:00
2014-07-24 10:55:55 -05:00
PRETTY = 1
2014-07-24 12:03:57 -05:00
SMALL = 0
2014-07-24 10:55:55 -05:00
2016-12-04 07:28:25 -06:00
# Unit test
UNITESTPATH := tests/unit
2013-01-05 04:13:26 -06:00
all : top -all
2015-08-12 08:04:44 -05:00
YOSYS_SRC := $( dir $( firstword $( MAKEFILE_LIST) ) )
VPATH := $( YOSYS_SRC)
2024-06-17 09:55:36 -05:00
CXXSTD ?= c++17
2020-08-26 11:53:47 -05:00
CXXFLAGS := $( CXXFLAGS) -Wall -Wextra -ggdb -I. -I" $( YOSYS_SRC) " -MD -MP -D_YOSYS_ -fPIC -I$( PREFIX) /include
2024-02-25 10:02:35 -06:00
LIBS := $( LIBS) -lstdc++ -lm
PLUGIN_LINKFLAGS :=
PLUGIN_LIBS :=
EXE_LINKFLAGS :=
2022-10-31 03:10:46 -05:00
i f e q ( $( OS ) , M I N G W )
2024-02-25 10:02:35 -06:00
EXE_LINKFLAGS := -Wl,--export-all-symbols -Wl,--out-implib,libyosys_exe.a
PLUGIN_LINKFLAGS += -L" $( LIBDIR) "
PLUGIN_LIBS := -lyosys_exe
2022-10-31 03:10:46 -05:00
e n d i f
2016-03-24 08:07:05 -05:00
2017-02-07 08:09:15 -06:00
PKG_CONFIG ?= pkg-config
SED ?= sed
BISON ?= bison
2018-01-17 07:14:10 -06:00
STRIP ?= strip
2018-11-19 14:46:18 -06:00
AWK ?= awk
2013-01-05 04:13:26 -06:00
2018-05-13 06:29:18 -05:00
i f e q ( $( OS ) , D a r w i n )
2024-02-25 10:02:35 -06:00
PLUGIN_LINKFLAGS += -undefined dynamic_lookup
2017-08-04 04:24:58 -05:00
2017-02-07 08:12:12 -06:00
# homebrew search paths
2019-09-04 18:30:29 -05:00
ifneq ($(shell : ; command -v brew ), )
2017-02-07 08:12:12 -06:00
BREW_PREFIX := $( shell brew --prefix) /opt
2019-05-22 14:58:12 -05:00
$( info $ $ BREW_PREFIX is [$ {BREW_PREFIX }])
2019-08-22 13:43:52 -05:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
2019-05-22 14:58:12 -05:00
CXXFLAGS += -I$( BREW_PREFIX) /boost/include/boost
2024-02-25 10:02:35 -06:00
LINKFLAGS += -L$( BREW_PREFIX) /boost/lib
2019-08-22 13:43:52 -05:00
e n d i f
2017-02-07 08:12:12 -06:00
CXXFLAGS += -I$( BREW_PREFIX) /readline/include
2024-02-25 10:02:35 -06:00
LINKFLAGS += -L$( BREW_PREFIX) /readline/lib
2017-02-09 15:53:37 -06:00
PKG_CONFIG_PATH := $( BREW_PREFIX) /libffi/lib/pkgconfig:$( PKG_CONFIG_PATH)
2017-02-10 07:06:54 -06:00
PKG_CONFIG_PATH := $( BREW_PREFIX) /tcl-tk/lib/pkgconfig:$( PKG_CONFIG_PATH)
2017-02-07 08:12:12 -06:00
export PATH := $( BREW_PREFIX) /bison/bin:$( BREW_PREFIX) /gettext/bin:$( BREW_PREFIX) /flex/bin:$( PATH)
# macports search paths
2019-09-04 18:30:29 -05:00
else ifneq ($(shell : ; command -v port ), )
PORT_PREFIX := $( patsubst %/bin/port,%,$( shell :; command -v port) )
2017-02-07 08:12:12 -06:00
CXXFLAGS += -I$( PORT_PREFIX) /include
2024-02-25 10:02:35 -06:00
LINKFLAGS += -L$( PORT_PREFIX) /lib
2017-02-09 15:53:37 -06:00
PKG_CONFIG_PATH := $( PORT_PREFIX) /lib/pkgconfig:$( PKG_CONFIG_PATH)
2017-02-07 08:12:12 -06:00
export PATH := $( PORT_PREFIX) /bin:$( PATH)
e n d i f
2017-08-04 04:24:58 -05:00
2014-03-13 06:48:10 -05:00
e l s e
2024-02-25 10:02:35 -06:00
LINKFLAGS += -rdynamic
2022-07-08 06:39:18 -05:00
i f n e q ( $( OS ) , O p e n B S D )
2024-02-25 10:02:35 -06:00
LIBS += -lrt
2014-03-13 06:48:10 -05:00
e n d i f
2022-07-08 06:39:18 -05:00
e n d i f
2014-03-13 06:48:10 -05:00
2024-06-04 10:14:02 -05:00
i f e q ( $( OS ) , H a i k u )
# Allow usage of non-posix vasprintf, mkstemps functions
CXXFLAGS += -D_DEFAULT_SOURCE
e n d i f
2024-10-12 19:22:25 -05:00
YOSYS_VER := 0.46+20
2021-12-30 11:45:15 -06:00
# Note: We arrange for .gitcommit to contain the (short) commit hash in
# tarballs generated with git-archive(1) using .gitattributes. The git repo
# will have this file in its unexpanded form tough, in which case we fall
# back to calling git directly.
TARBALL_GIT_REV := $( shell cat $( YOSYS_SRC) /.gitcommit)
2024-07-12 04:00:36 -05:00
ifneq ($(findstring Format : , $( TARBALL_GIT_REV ) ), )
2023-02-22 19:38:14 -06:00
GIT_REV := $( shell GIT_DIR = $( YOSYS_SRC) /.git git rev-parse --short= 9 HEAD || echo UNKNOWN)
2021-12-30 11:45:15 -06:00
e l s e
GIT_REV := $( TARBALL_GIT_REV)
e n d i f
2013-08-20 02:48:12 -05:00
OBJS = kernel/version_$( GIT_REV) .o
2019-08-27 03:13:23 -05:00
bumpversion :
2024-10-09 01:12:44 -05:00
sed -i " /^YOSYS_VER := / s/+[0-9][0-9]* $$ /+`git log --oneline e97731b.. | wc -l`/; " Makefile
2019-08-27 03:13:23 -05:00
2022-07-04 09:52:28 -05:00
ABCMKARGS = CC = " $( CXX) " CXX = " $( CXX) " ABC_USE_LIBSTDCXX = 1 ABC_USE_NAMESPACE = abc VERBOSE = $( Q)
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
2016-03-19 10:36:18 -05:00
# Note: The in-tree ABC (yosys-abc) will not be installed when ABCEXTERNAL is set.
2016-10-13 15:51:14 -05:00
ABCEXTERNAL ?=
2016-03-19 10:36:18 -05:00
2014-08-27 05:13:53 -05:00
d e f i n e n e w l i n e
e n d e f
2014-08-26 03:11:46 -05:00
i f n e q ( $( wildcard Makefile .conf ) , )
2020-04-11 04:42:30 -05:00
# don't echo Makefile.conf contents when invoked to print source versions
i f e q ( $( findstring echo -,$ ( MAKECMDGOALS ) ) , )
2014-08-27 05:13:53 -05:00
$( info $ ( subst $ $ --$ $ ,$ ( newline ) ,$ ( shell sed 's ,^,[Makefile .conf ] ,; s ,$ $ ,$ $ --$ $ ,;' < Makefile .conf | tr -d '\n ' | sed 's ,\$ $ --\$ $ $ $ ,,') ) )
2020-04-11 04:42:30 -05:00
e n d i f
2014-08-26 03:11:46 -05:00
i n c l u d e M a k e f i l e . c o n f
e n d i f
2013-01-05 04:13:26 -06:00
2019-10-19 01:04:52 -05:00
PYTHON_EXECUTABLE := $( shell if python3 -c "" ; then echo "python3" ; else echo "python" ; fi )
2019-05-28 07:53:07 -05:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
PYTHON_VERSION_TESTCODE := "import sys;t='{v[0]}.{v[1]}'.format(v=list(sys.version_info[:2]));print(t)"
PYTHON_VERSION := $( shell $( PYTHON_EXECUTABLE) -c "" $( PYTHON_VERSION_TESTCODE) "" )
PYTHON_MAJOR_VERSION := $( shell echo $( PYTHON_VERSION) | cut -f1 -d.)
2019-11-19 13:46:15 -06:00
ENABLE_PYTHON_CONFIG_EMBED ?= $( shell $( PYTHON_EXECUTABLE) -config --embed --libs > /dev/null && echo 1)
i f e q ( $( ENABLE_PYTHON_CONFIG_EMBED ) , 1 )
PYTHON_CONFIG := $( PYTHON_EXECUTABLE) -config --embed
e l s e
2019-11-19 13:45:59 -06:00
PYTHON_CONFIG := $( PYTHON_EXECUTABLE) -config
2019-11-19 13:46:15 -06:00
e n d i f
2020-09-25 04:21:16 -05:00
PYTHON_DESTDIR := $( shell $( PYTHON_EXECUTABLE) -c "import site; print(site.getsitepackages()[-1]);" )
2019-05-28 07:53:07 -05:00
# Reload Makefile.conf to override python specific variables if defined
i f n e q ( $( wildcard Makefile .conf ) , )
i n c l u d e M a k e f i l e . c o n f
e n d i f
e n d i f
2022-07-27 07:16:46 -05:00
ABC_ARCHFLAGS = ""
i f e q ( $( OS ) , O p e n B S D )
ABC_ARCHFLAGS += "-DABC_NO_RLIMIT"
e n d i f
2024-07-09 04:25:16 -05:00
# This gets overridden later.
LTOFLAGS := $( GCC_LTO)
2014-07-31 16:14:17 -05:00
i f e q ( $( CONFIG ) , c l a n g )
2024-02-23 07:03:12 -06:00
CXX = clang++
2024-07-08 12:19:10 -05:00
CXXFLAGS += -std= $( CXXSTD) $( OPT_LEVEL)
2024-08-05 12:28:09 -05:00
i f e q ( $( ENABLE_LTO ) , 1 )
2024-07-09 04:25:16 -05:00
LINKFLAGS += -fuse-ld= lld
2024-08-05 12:28:09 -05:00
e n d i f
2024-03-11 15:18:38 -05:00
ABCMKARGS += ARCHFLAGS = " -DABC_USE_STDINT_H $( ABC_ARCHFLAGS) "
2024-07-09 04:25:16 -05:00
LTOFLAGS := $( CLANG_LTO)
2013-01-05 04:13:26 -06:00
2016-01-31 09:08:21 -06:00
i f n e q ( $( SANITIZER ) , )
$( info [Clang Sanitizer ] $ ( SANITIZER ) )
CXXFLAGS += -g -O1 -fno-omit-frame-pointer -fno-optimize-sibling-calls -fsanitize= $( SANITIZER)
2024-02-25 10:02:35 -06:00
LINKFLAGS += -g -fsanitize= $( SANITIZER)
2021-03-16 10:41:31 -05:00
i f n e q ( $( findstring address ,$ ( SANITIZER ) ) , )
2016-01-31 09:08:21 -06:00
ENABLE_COVER := 0
e n d i f
2021-03-16 10:41:31 -05:00
i f n e q ( $( findstring memory ,$ ( SANITIZER ) ) , )
2016-04-05 06:25:05 -05:00
CXXFLAGS += -fPIE -fsanitize-memory-track-origins
2024-02-25 10:02:35 -06:00
LINKFLAGS += -fPIE -fsanitize-memory-track-origins
2016-01-31 12:55:48 -06:00
e n d i f
2021-03-16 10:41:31 -05:00
i f n e q ( $( findstring cfi ,$ ( SANITIZER ) ) , )
2016-01-31 09:08:21 -06:00
CXXFLAGS += -flto
2024-02-25 10:02:35 -06:00
LINKFLAGS += -flto
2024-07-09 04:25:16 -05:00
LTOFLAGS =
2016-01-31 09:08:21 -06:00
e n d i f
e n d i f
2014-08-25 05:48:20 -05:00
e l s e i f e q ( $( CONFIG ) , g c c )
2024-02-23 07:03:12 -06:00
CXX = g++
2024-07-08 12:19:10 -05:00
CXXFLAGS += -std= $( CXXSTD) $( OPT_LEVEL)
2022-07-27 07:16:46 -05:00
ABCMKARGS += ARCHFLAGS = " -DABC_USE_STDINT_H $( ABC_ARCHFLAGS) "
2013-01-05 04:13:26 -06:00
2018-08-18 07:00:55 -05:00
e l s e i f e q ( $( CONFIG ) , g c c - s t a t i c )
2024-02-25 10:02:35 -06:00
LINKFLAGS := $( filter-out -rdynamic,$( LINKFLAGS) ) -static
LIBS := $( filter-out -lrt,$( LIBS) )
2018-08-18 07:14:17 -05:00
CXXFLAGS := $( filter-out -fPIC,$( CXXFLAGS) )
2024-07-08 12:19:10 -05:00
CXXFLAGS += -std= $( CXXSTD) $( OPT_LEVEL)
2024-02-25 09:43:55 -06:00
ABCMKARGS = CC = " $( CC) " CXX = " $( CXX) " LD = " $( CXX) " ABC_USE_LIBSTDCXX = 1 LIBS = "-lm -lpthread -static" OPTFLAGS = "-O" \
2018-08-18 08:11:58 -05:00
ARCHFLAGS = " -DABC_USE_STDINT_H -DABC_NO_DYNAMIC_LINKING=1 -Wno-unused-but-set-variable $( ARCHFLAGS) " ABC_USE_NO_READLINE = 1
2018-08-18 11:21:28 -05:00
i f e q ( $( DISABLE_ABC_THREADS ) , 1 )
ABCMKARGS += "ABC_USE_NO_PTHREADS=1"
e n d i f
2018-08-18 07:00:55 -05:00
2019-05-27 13:38:44 -05:00
e l s e i f e q ( $( CONFIG ) , a f l - g c c )
CXX = AFL_QUIET = 1 AFL_HARDEN = 1 afl-gcc
2024-07-08 12:19:10 -05:00
CXXFLAGS += -std= $( CXXSTD) $( OPT_LEVEL)
2019-05-27 13:38:44 -05:00
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H"
2018-09-19 03:16:53 -05:00
e l s e i f e q ( $( CONFIG ) , c y g w i n )
2024-02-23 07:03:12 -06:00
CXX = g++
2024-07-08 12:19:10 -05:00
CXXFLAGS += -std= gnu++11 $( OPT_LEVEL)
2018-09-19 03:16:53 -05:00
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H"
2019-11-11 03:23:06 -06:00
e l s e i f e q ( $( CONFIG ) , w a s i )
i f e q ( $( WASI_SDK ) , )
2024-02-23 07:03:12 -06:00
CXX = clang++
2019-11-11 03:23:06 -06:00
AR = llvm-ar
RANLIB = llvm-ranlib
WASIFLAGS := -target wasm32-wasi --sysroot $( WASI_SYSROOT) $( WASIFLAGS)
e l s e
2024-02-23 07:03:12 -06:00
CXX = $( WASI_SDK) /bin/clang++
2019-11-11 03:23:06 -06:00
AR = $( WASI_SDK) /bin/ar
RANLIB = $( WASI_SDK) /bin/ranlib
WASIFLAGS := --sysroot $( WASI_SDK) /share/wasi-sysroot $( WASIFLAGS)
e n d i f
2024-07-08 12:19:10 -05:00
CXXFLAGS := $( WASIFLAGS) -std= $( CXXSTD) $( OPT_LEVEL) -D_WASI_EMULATED_PROCESS_CLOCKS $( filter-out -fPIC,$( CXXFLAGS) )
2024-02-25 10:02:35 -06:00
LINKFLAGS := $( WASIFLAGS) -Wl,-z,stack-size= 1048576 $( filter-out -rdynamic,$( LINKFLAGS) )
LIBS := -lwasi-emulated-process-clocks $( filter-out -lrt,$( LIBS) )
2019-11-11 03:23:06 -06:00
ABCMKARGS += AR = " $( AR) " RANLIB = " $( RANLIB) "
2024-03-11 15:18:38 -05:00
ABCMKARGS += ARCHFLAGS = " $( WASIFLAGS) -D_WASI_EMULATED_PROCESS_CLOCKS -DABC_USE_STDINT_H -DABC_NO_DYNAMIC_LINKING -DABC_NO_RLIMIT "
2019-11-11 03:23:06 -06:00
ABCMKARGS += OPTFLAGS = "-Os"
EXE = .wasm
DISABLE_SPAWN := 1
i f e q ( $( ENABLE_ABC ) , 1 )
LINK_ABC := 1
DISABLE_ABC_THREADS := 1
e n d i f
2014-10-09 03:50:44 -05:00
e l s e i f e q ( $( CONFIG ) , m x e )
2017-05-17 13:46:22 -05:00
PKG_CONFIG = /usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-pkg-config
2018-08-15 12:08:45 -05:00
CXX = /usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-g++
2024-07-08 12:19:10 -05:00
CXXFLAGS += -std= $( CXXSTD) $( OPT_LEVEL) -D_POSIX_SOURCE -DYOSYS_MXE_HACKS -Wno-attributes
2014-10-09 03:50:44 -05:00
CXXFLAGS := $( filter-out -fPIC,$( CXXFLAGS) )
2024-02-25 10:02:35 -06:00
LINKFLAGS := $( filter-out -rdynamic,$( LINKFLAGS) ) -s
LIBS := $( filter-out -lrt,$( LIBS) )
2018-08-15 12:08:45 -05:00
ABCMKARGS += ARCHFLAGS = "-DWIN32_NO_DLL -DHAVE_STRUCT_TIMESPEC -fpermissive -w"
2019-07-31 11:02:27 -05:00
# TODO: Try to solve pthread linking issue in more appropriate way
2024-02-25 10:02:35 -06:00
ABCMKARGS += LIBS = "lib/x86/pthreadVC2.lib -s" LINKFLAGS = "-Wl,--allow-multiple-definition" ABC_USE_NO_READLINE = 1 CC = "/usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-gcc"
2014-10-09 03:50:44 -05:00
EXE = .exe
2014-08-25 05:48:20 -05:00
2020-12-26 22:37:46 -06:00
e l s e i f e q ( $( CONFIG ) , m s y s 2 - 3 2 )
2018-02-19 11:43:44 -06:00
CXX = i686-w64-mingw32-g++
2024-07-08 12:19:10 -05:00
CXXFLAGS += -std= $( CXXSTD) $( OPT_LEVEL) -D_POSIX_SOURCE -DYOSYS_WIN32_UNIX_DIR
2016-08-16 13:41:37 -05:00
CXXFLAGS := $( filter-out -fPIC,$( CXXFLAGS) )
2024-02-25 10:02:35 -06:00
LINKFLAGS := $( filter-out -rdynamic,$( LINKFLAGS) ) -s
LIBS := $( filter-out -lrt,$( LIBS) )
2018-05-19 00:01:25 -05:00
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H -DWIN32_NO_DLL -DHAVE_STRUCT_TIMESPEC -fpermissive -w"
2023-10-05 02:55:53 -05:00
ABCMKARGS += LIBS = "-lpthread -lshlwapi -s" ABC_USE_NO_READLINE = 0 CC = "i686-w64-mingw32-gcc" CXX = " $( CXX) "
2016-08-16 13:41:37 -05:00
EXE = .exe
2018-06-27 15:33:34 -05:00
e l s e i f e q ( $( CONFIG ) , m s y s 2 - 6 4 )
CXX = x86_64-w64-mingw32-g++
2024-07-08 12:19:10 -05:00
CXXFLAGS += -std= $( CXXSTD) $( OPT_LEVEL) -D_POSIX_SOURCE -DYOSYS_WIN32_UNIX_DIR
2018-06-27 15:33:34 -05:00
CXXFLAGS := $( filter-out -fPIC,$( CXXFLAGS) )
2024-02-25 10:02:35 -06:00
LINKFLAGS := $( filter-out -rdynamic,$( LINKFLAGS) ) -s
LIBS := $( filter-out -lrt,$( LIBS) )
2018-06-27 15:33:34 -05:00
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H -DWIN32_NO_DLL -DHAVE_STRUCT_TIMESPEC -fpermissive -w"
2023-10-05 02:55:53 -05:00
ABCMKARGS += LIBS = "-lpthread -lshlwapi -s" ABC_USE_NO_READLINE = 0 CC = "x86_64-w64-mingw32-gcc" CXX = " $( CXX) "
2016-08-16 13:41:37 -05:00
EXE = .exe
2024-03-11 15:39:25 -05:00
e l s e i f e q ( $( CONFIG ) , n o n e )
2024-07-08 12:19:10 -05:00
CXXFLAGS += -std= $( CXXSTD) $( OPT_LEVEL)
2024-03-07 16:09:03 -06:00
ABCMKARGS += ARCHFLAGS = " -DABC_USE_STDINT_H $( ABC_ARCHFLAGS) "
2024-07-09 04:25:16 -05:00
LTOFLAGS =
2024-03-11 15:39:25 -05:00
e l s e
2024-05-10 08:03:17 -05:00
$(error Invalid CONFIG setting '$(CONFIG)'. Valid values : clang , gcc , mxe , msys 2-32, msys 2-64, none )
2014-08-22 09:09:13 -05:00
e n d i f
2024-07-09 04:25:16 -05:00
i f e q ( $( ENABLE_LTO ) , 1 )
CXXFLAGS += $( LTOFLAGS)
LINKFLAGS += $( LTOFLAGS)
e n d i f
2015-08-04 13:25:26 -05:00
i f e q ( $( ENABLE_LIBYOSYS ) , 1 )
2020-04-10 08:02:48 -05:00
TARGETS += libyosys.so
2015-08-04 06:22:49 -05:00
e n d i f
2018-12-21 07:08:23 -06:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
2021-06-14 01:55:22 -05:00
# Detect name of boost_python library. Some distros use boost_python-py<version>, other boost_python<version>, some only use the major version number, some a concatenation of major and minor version numbers
CHECK_BOOST_PYTHON = ( echo "int main(int argc, char ** argv) {return 0;}" | $( CXX) -xc -o /dev/null $( shell $( PYTHON_CONFIG) --ldflags) -l$( 1) - > /dev/null 2>& 1 && echo " -l $( 1) " )
2019-05-22 14:58:12 -05:00
BOOST_PYTHON_LIB ?= $( shell \
2021-06-14 01:55:22 -05:00
$( call CHECK_BOOST_PYTHON,boost_python-py$( subst .,,$( PYTHON_VERSION) ) ) || \
$( call CHECK_BOOST_PYTHON,boost_python-py$( PYTHON_MAJOR_VERSION) ) || \
$( call CHECK_BOOST_PYTHON,boost_python$( subst .,,$( PYTHON_VERSION) ) ) || \
$( call CHECK_BOOST_PYTHON,boost_python$( PYTHON_MAJOR_VERSION) ) \
)
2019-04-05 04:56:01 -05:00
i f e q ( $( BOOST_PYTHON_LIB ) , )
2020-05-07 12:28:18 -05:00
$( error BOOST_PYTHON_LIB could not be detected . Please define manually )
2019-04-05 04:56:01 -05:00
e n d i f
2024-02-25 10:02:35 -06:00
LIBS += $( shell $( PYTHON_CONFIG) --libs) $( BOOST_PYTHON_LIB) -lboost_system -lboost_filesystem
# python-config --ldflags includes LIBS for some reason
LINKFLAGS += $( filter-out -l%,$( shell $( PYTHON_CONFIG) --ldflags) )
2019-11-19 13:45:59 -06:00
CXXFLAGS += $( shell $( PYTHON_CONFIG) --includes) -DWITH_PYTHON
2019-04-05 04:56:01 -05:00
2018-09-19 03:32:34 -05:00
PY_WRAPPER_FILE = kernel/python_wrappers
OBJS += $( PY_WRAPPER_FILE) .o
PY_GEN_SCRIPT = py_wrap_generator
2019-04-30 06:19:04 -05:00
PY_WRAP_INCLUDES := $( shell python$( PYTHON_VERSION) -c " from misc import $( PY_GEN_SCRIPT) ; $( PY_GEN_SCRIPT) .print_includes() " )
2021-06-14 01:55:22 -05:00
e n d i f # ENABLE_PYOSYS
2018-06-22 04:15:03 -05:00
2014-08-22 09:09:13 -05:00
i f e q ( $( ENABLE_READLINE ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_READLINE
2022-07-08 06:39:18 -05:00
i f e q ( $( OS ) , $( filter $ ( OS ) ,FreeBSD OpenBSD NetBSD ) )
2018-05-06 08:19:44 -05:00
CXXFLAGS += -I/usr/local/include
e n d i f
2024-02-25 10:02:35 -06:00
LIBS += -lreadline
2016-11-22 00:11:58 -06:00
i f e q ( $( LINK_CURSES ) , 1 )
2024-02-25 10:02:35 -06:00
LIBS += -lcurses
2016-11-22 00:11:58 -06:00
ABCMKARGS += "ABC_READLINE_LIBRARIES=-lcurses -lreadline"
e n d i f
2017-07-17 16:21:59 -05:00
i f e q ( $( LINK_TERMCAP ) , 1 )
2024-02-25 10:02:35 -06:00
LIBS += -ltermcap
2017-07-17 16:21:59 -05:00
ABCMKARGS += "ABC_READLINE_LIBRARIES=-lreadline -ltermcap"
e n d i f
2014-10-11 03:59:11 -05:00
i f e q ( $( CONFIG ) , m x e )
2024-02-25 10:02:35 -06:00
LIBS += -ltermcap
2014-10-11 03:59:11 -05:00
e n d i f
2017-11-07 19:54:24 -06:00
e l s e
i f e q ( $( ENABLE_EDITLINE ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_EDITLINE
2024-02-25 10:02:35 -06:00
LIBS += -ledit -ltinfo -lbsd
2018-05-19 00:42:24 -05:00
e l s e
ABCMKARGS += "ABC_USE_NO_READLINE=1"
e n d i f
2017-11-07 19:54:24 -06:00
e n d i f
2018-05-19 00:42:24 -05:00
i f e q ( $( DISABLE_ABC_THREADS ) , 1 )
ABCMKARGS += "ABC_USE_NO_PTHREADS=1"
2014-08-22 09:09:13 -05:00
e n d i f
2019-11-11 03:23:06 -06:00
i f e q ( $( DISABLE_SPAWN ) , 1 )
CXXFLAGS += -DYOSYS_DISABLE_SPAWN
e n d i f
2014-08-22 09:09:13 -05:00
i f e q ( $( ENABLE_PLUGINS ) , 1 )
2017-02-10 07:06:54 -06:00
CXXFLAGS += $( shell PKG_CONFIG_PATH = $( PKG_CONFIG_PATH) $( PKG_CONFIG) --silence-errors --cflags libffi) -DYOSYS_ENABLE_PLUGINS
2022-10-31 03:10:46 -05:00
i f e q ( $( OS ) , M I N G W )
CXXFLAGS += -Ilibs/dlfcn-win32
e n d i f
2024-02-25 10:02:35 -06:00
LIBS += $( shell PKG_CONFIG_PATH = $( PKG_CONFIG_PATH) $( PKG_CONFIG) --silence-errors --libs libffi || echo -lffi)
2022-10-31 03:10:46 -05:00
i f n e q ( $( OS ) , $( filter $ ( OS ) ,FreeBSD OpenBSD NetBSD MINGW ) )
2024-02-25 10:02:35 -06:00
LIBS += -ldl
2018-05-06 08:19:44 -05:00
e n d i f
2014-08-22 09:09:13 -05:00
e n d i f
2019-03-11 03:08:36 -05:00
i f e q ( $( ENABLE_GLOB ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_GLOB
e n d i f
2019-07-26 04:23:58 -05:00
i f e q ( $( ENABLE_ZLIB ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_ZLIB
2024-02-25 10:02:35 -06:00
LIBS += -lz
2019-07-26 04:23:58 -05:00
e n d i f
2013-03-28 10:50:50 -05:00
i f e q ( $( ENABLE_TCL ) , 1 )
2016-04-29 03:26:22 -05:00
TCL_VERSION ?= tcl$( shell bash -c "tclsh <(echo 'puts [info tclversion]')" )
2022-07-08 06:39:18 -05:00
i f e q ( $( OS ) , $( filter $ ( OS ) ,FreeBSD OpenBSD NetBSD ) )
2022-07-15 17:47:00 -05:00
# BSDs usually use tcl8.6, but the lib is named "libtcl86"
2018-05-06 08:19:44 -05:00
TCL_INCLUDE ?= /usr/local/include/$( TCL_VERSION)
2022-07-15 17:47:00 -05:00
TCL_LIBS ?= -l$( subst .,,$( TCL_VERSION) )
2018-05-06 08:19:44 -05:00
e l s e
2014-03-09 14:40:04 -05:00
TCL_INCLUDE ?= /usr/include/$( TCL_VERSION)
2022-07-15 17:47:00 -05:00
TCL_LIBS ?= -l$( TCL_VERSION)
2018-05-06 08:19:44 -05:00
e n d i f
2017-02-10 07:06:54 -06:00
2017-05-17 13:46:22 -05:00
i f e q ( $( CONFIG ) , m x e )
CXXFLAGS += -DYOSYS_ENABLE_TCL
2024-02-25 10:02:35 -06:00
LIBS += -ltcl86 -lwsock32 -lws2_32 -lnetapi32 -lz -luserenv
2017-05-17 13:46:22 -05:00
e l s e
2017-02-10 07:06:54 -06:00
CXXFLAGS += $( shell PKG_CONFIG_PATH = $( PKG_CONFIG_PATH) $( PKG_CONFIG) --silence-errors --cflags tcl || echo -I$( TCL_INCLUDE) ) -DYOSYS_ENABLE_TCL
2024-02-25 10:02:35 -06:00
LIBS += $( shell PKG_CONFIG_PATH = $( PKG_CONFIG_PATH) $( PKG_CONFIG) --silence-errors --libs tcl || echo $( TCL_LIBS) )
2017-05-17 13:46:22 -05:00
e n d i f
2018-05-06 08:19:44 -05:00
e n d i f
2013-03-28 10:50:50 -05:00
2018-08-27 06:27:05 -05:00
i f e q ( $( ENABLE_GCOV ) , 1 )
CXXFLAGS += --coverage
2024-02-25 10:02:35 -06:00
LINKFLAGS += --coverage
2018-08-27 06:27:05 -05:00
e n d i f
2013-03-28 10:50:50 -05:00
i f e q ( $( ENABLE_GPROF ) , 1 )
2014-08-16 19:24:53 -05:00
CXXFLAGS += -pg
2024-02-25 10:02:35 -06:00
LINKFLAGS += -pg
2013-03-28 10:50:50 -05:00
e n d i f
2015-01-24 05:16:46 -06:00
2017-10-25 07:57:16 -05:00
i f e q ( $( ENABLE_DEBUG ) , 1 )
2024-07-08 12:19:10 -05:00
CXXFLAGS := -Og -DDEBUG $( filter-out $( OPT_LEVEL) ,$( CXXFLAGS) )
2015-01-24 05:16:46 -06:00
e n d i f
2013-03-28 10:50:50 -05:00
2013-11-27 02:08:35 -06:00
i f e q ( $( ENABLE_ABC ) , 1 )
2014-09-14 09:09:06 -05:00
CXXFLAGS += -DYOSYS_ENABLE_ABC
2017-11-14 04:19:21 -06:00
i f e q ( $( LINK_ABC ) , 1 )
CXXFLAGS += -DYOSYS_LINK_ABC
2018-05-19 00:42:24 -05:00
i f e q ( $( DISABLE_ABC_THREADS ) , 0 )
2024-02-25 10:02:35 -06:00
LIBS += -lpthread
2018-05-19 00:42:24 -05:00
e n d i f
2017-11-14 04:19:21 -06:00
e l s e
2016-03-19 10:36:18 -05:00
i f e q ( $( ABCEXTERNAL ) , )
2024-05-10 08:02:06 -05:00
TARGETS := $( PROGRAM_PREFIX) yosys-abc$( EXE) $( TARGETS)
2016-03-19 10:36:18 -05:00
e n d i f
2013-11-27 02:08:35 -06:00
e n d i f
2017-11-14 04:19:21 -06:00
e n d i f
2013-11-27 02:08:35 -06:00
2020-12-27 19:24:41 -06:00
i f e q ( $( ENABLE_GHDL ) , 1 )
GHDL_PREFIX ?= $( PREFIX)
2020-12-30 00:06:52 -06:00
GHDL_INCLUDE_DIR ?= $( GHDL_PREFIX) /include
GHDL_LIB_DIR ?= $( GHDL_PREFIX) /lib
2020-12-27 19:24:41 -06:00
CXXFLAGS += -I$( GHDL_INCLUDE_DIR) -DYOSYS_ENABLE_GHDL
2024-02-25 10:02:35 -06:00
LIBS += $( GHDL_LIB_DIR) /libghdl.a $( file <$( GHDL_LIB_DIR) /libghdl.link)
2020-12-27 19:24:41 -06:00
e n d i f
2024-02-25 10:02:35 -06:00
LIBS_VERIFIC =
2014-03-09 14:40:04 -05:00
i f e q ( $( ENABLE_VERIFIC ) , 1 )
2019-01-04 07:44:35 -06:00
VERIFIC_DIR ?= /usr/local/src/verific_lib
2024-06-07 07:58:33 -05:00
VERIFIC_COMPONENTS ?= database util containers
2024-06-11 08:32:16 -05:00
i f e q ( $( ENABLE_VERIFIC_HIER_TREE ) , 1 )
2024-05-21 10:08:07 -05:00
VERIFIC_COMPONENTS += hier_tree
CXXFLAGS += -DVERIFIC_HIER_TREE_SUPPORT
e l s e
i f n e q ( $( wildcard $ ( VERIFIC_DIR ) /hier_tree ) , )
VERIFIC_COMPONENTS += hier_tree
e n d i f
e n d i f
2024-06-11 08:32:16 -05:00
i f e q ( $( ENABLE_VERIFIC_SYSTEMVERILOG ) , 1 )
2024-06-07 07:58:33 -05:00
VERIFIC_COMPONENTS += verilog
CXXFLAGS += -DVERIFIC_SYSTEMVERILOG_SUPPORT
e l s e
i f n e q ( $( wildcard $ ( VERIFIC_DIR ) /verilog ) , )
VERIFIC_COMPONENTS += verilog
e n d i f
e n d i f
2024-06-11 08:32:16 -05:00
i f e q ( $( ENABLE_VERIFIC_VHDL ) , 1 )
2021-10-20 03:02:58 -05:00
VERIFIC_COMPONENTS += vhdl
CXXFLAGS += -DVERIFIC_VHDL_SUPPORT
2021-10-20 06:08:08 -05:00
e l s e
i f n e q ( $( wildcard $ ( VERIFIC_DIR ) /vhdl ) , )
VERIFIC_COMPONENTS += vhdl
e n d i f
2021-10-20 03:02:58 -05:00
e n d i f
2022-10-04 02:18:44 -05:00
i f e q ( $( ENABLE_VERIFIC_EDIF ) , 1 )
VERIFIC_COMPONENTS += edif
CXXFLAGS += -DVERIFIC_EDIF_SUPPORT
e n d i f
2022-10-31 04:15:05 -05:00
i f e q ( $( ENABLE_VERIFIC_LIBERTY ) , 1 )
VERIFIC_COMPONENTS += synlib
CXXFLAGS += -DVERIFIC_LIBERTY_SUPPORT
e n d i f
2024-06-11 08:32:16 -05:00
i f e q ( $( ENABLE_VERIFIC_YOSYSHQ_EXTENSIONS ) , 1 )
2021-08-20 03:19:04 -05:00
VERIFIC_COMPONENTS += extensions
CXXFLAGS += -DYOSYSHQ_VERIFIC_EXTENSIONS
2024-06-11 08:32:16 -05:00
e l s e
i f n e q ( $( wildcard $ ( VERIFIC_DIR ) /extensions ) , )
VERIFIC_COMPONENTS += extensions
e n d i f
2021-08-20 03:19:04 -05:00
e n d i f
2014-03-13 11:34:31 -05:00
CXXFLAGS += $( patsubst %,-I$( VERIFIC_DIR) /%,$( VERIFIC_COMPONENTS) ) -DYOSYS_ENABLE_VERIFIC
2018-11-08 01:18:47 -06:00
i f e q ( $( OS ) , D a r w i n )
2024-02-25 10:02:35 -06:00
LIBS_VERIFIC += $( foreach comp,$( patsubst %,$( VERIFIC_DIR) /%/*-mac.a,$( VERIFIC_COMPONENTS) ) ,-Wl,-force_load $( comp) ) -lz
2018-11-08 01:18:47 -06:00
e l s e
2024-02-25 10:02:35 -06:00
LIBS_VERIFIC += -Wl,--whole-archive $( patsubst %,$( VERIFIC_DIR) /%/*-linux.a,$( VERIFIC_COMPONENTS) ) -Wl,--no-whole-archive -lz
2018-06-19 07:34:56 -05:00
e n d i f
2018-11-08 01:18:47 -06:00
e n d i f
2018-06-19 07:34:56 -05:00
2014-03-09 14:40:04 -05:00
2014-11-06 02:39:55 -06:00
i f e q ( $( ENABLE_COVER ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_COVER
e n d i f
2020-07-04 13:59:39 -05:00
i f e q ( $( ENABLE_CCACHE ) , 1 )
CXX := ccache $( CXX)
2020-11-19 12:23:54 -06:00
e l s e
i f e q ( $( ENABLE_SCCACHE ) , 1 )
CXX := sccache $( CXX)
e n d i f
2020-07-04 13:59:39 -05:00
e n d i f
2015-01-07 17:23:18 -06:00
d e f i n e a d d _ s h a r e _ f i l e
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)
2015-08-12 08:04:44 -05:00
$$ ( Q) cp " $( YOSYS_SRC) " /$( 2) $( subst //,/,$( 1) /$( notdir $( 2) ) )
2015-01-07 17:23:18 -06:00
e n d e f
2015-08-16 14:15:07 -05:00
d e f i n e a d d _ g e n _ s h a r e _ f i l e
EXTRA_TARGETS += $( subst //,/,$( 1) /$( notdir $( 2) ) )
$(subst //,/,$(1)/$(notdir $(2))) : $( 2)
$$ ( P) mkdir -p $( 1)
$$ ( Q) cp $( 2) $( subst //,/,$( 1) /$( notdir $( 2) ) )
e n d e f
2015-02-07 12:04:06 -06:00
d e f i n e a d d _ i n c l u d e _ f i l e
$( eval $ ( call add_share_file ,$ ( dir share /include /$ ( 1) ) ,$ ( 1) ) )
e n d e f
2019-08-15 11:34:36 -05:00
d e f i n e a d d _ e x t r a _ o b j s
EXTRA_OBJS += $( 1)
.SECONDARY : $( 1)
e n d e f
2014-07-24 10:15:01 -05:00
i f e q ( $( PRETTY ) , 1 )
2014-07-24 20:12:14 -05:00
P_STATUS = 0
P_OFFSET = 0
2020-04-10 03:38:40 -05:00
P_UPDATE = $( eval P_STATUS = $( shell echo $( OBJS) $( PROGRAM_PREFIX) yosys$( EXE) | $( AWK) 'BEGIN { RS = " "; I = $(P_STATUS)+0; } $$1 == "$@" && NR > I { I = NR; } END { print I; }' ) )
P_SHOW = [ $( shell $( AWK) " BEGIN { N= $( words $( OBJS) $( PROGRAM_PREFIX) 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
2014-07-24 10:55:55 -05:00
e l s e
2014-07-24 20:12:14 -05:00
P_SHOW = ->
2014-07-24 10:55:55 -05:00
P =
Q =
S =
2014-07-24 10:15:01 -05:00
e n d i f
2020-04-20 10:06:53 -05:00
$( eval $ ( call add_include_file ,kernel /binding .h ) )
2024-07-17 11:26:12 -05:00
$( eval $ ( call add_include_file ,kernel /bitpattern .h ) )
2023-07-03 17:50:38 -05:00
$( eval $ ( call add_include_file ,kernel /cellaigs .h ) )
2016-09-07 06:43:57 -05:00
$( eval $ ( call add_include_file ,kernel /celledges .h ) )
2023-09-15 13:24:45 -05:00
$( eval $ ( call add_include_file ,kernel /celltypes .h ) )
2015-02-07 12:04:06 -06:00
$( eval $ ( call add_include_file ,kernel /consteval .h ) )
2020-04-08 08:25:16 -05:00
$( eval $ ( call add_include_file ,kernel /constids .inc ) )
2023-09-15 13:24:45 -05:00
$( eval $ ( call add_include_file ,kernel /cost .h ) )
2024-04-15 07:12:16 -05:00
$( eval $ ( call add_include_file ,kernel /drivertools .h ) )
2020-07-18 20:51:05 -05:00
$( eval $ ( call add_include_file ,kernel /ff .h ) )
2020-07-18 18:59:47 -05:00
$( eval $ ( call add_include_file ,kernel /ffinit .h ) )
2023-09-15 13:24:45 -05:00
$( eval $ ( call add_include_file ,kernel /ffmerge .h ) )
$( eval $ ( call add_include_file ,kernel /fmt .h ) )
2022-04-07 20:07:44 -05:00
i f e q ( $( ENABLE_ZLIB ) , 1 )
2022-01-26 03:23:38 -06:00
$( eval $ ( call add_include_file ,kernel /fstdata .h ) )
2022-04-07 20:07:44 -05:00
e n d i f
2023-09-15 13:24:45 -05:00
$( eval $ ( call add_include_file ,kernel /hashlib .h ) )
$( eval $ ( call add_include_file ,kernel /json .h ) )
$( eval $ ( call add_include_file ,kernel /log .h ) )
$( eval $ ( call add_include_file ,kernel /macc .h ) )
$( eval $ ( call add_include_file ,kernel /modtools .h ) )
2020-10-17 15:19:34 -05:00
$( eval $ ( call add_include_file ,kernel /mem .h ) )
2023-09-15 13:24:45 -05:00
$( eval $ ( call add_include_file ,kernel /qcsat .h ) )
$( eval $ ( call add_include_file ,kernel /register .h ) )
$( eval $ ( call add_include_file ,kernel /rtlil .h ) )
$( eval $ ( call add_include_file ,kernel /satgen .h ) )
2024-01-29 07:46:39 -06:00
$( eval $ ( call add_include_file ,kernel /scopeinfo .h ) )
2024-07-11 05:30:23 -05:00
$( eval $ ( call add_include_file ,kernel /sexpr .h ) )
2023-09-15 13:24:45 -05:00
$( eval $ ( call add_include_file ,kernel /sigtools .h ) )
$( eval $ ( call add_include_file ,kernel /timinginfo .h ) )
$( eval $ ( call add_include_file ,kernel /utils .h ) )
$( eval $ ( call add_include_file ,kernel /yosys .h ) )
2024-04-02 08:58:06 -05:00
$( eval $ ( call add_include_file ,kernel /yosys_common .h ) )
2023-07-24 09:40:43 -05:00
$( eval $ ( call add_include_file ,kernel /yw .h ) )
2015-02-07 12:04:06 -06:00
$( eval $ ( call add_include_file ,libs /ezsat /ezsat .h ) )
$( eval $ ( call add_include_file ,libs /ezsat /ezminisat .h ) )
2022-04-07 20:07:44 -05:00
i f e q ( $( ENABLE_ZLIB ) , 1 )
2022-01-26 03:23:38 -06:00
$( eval $ ( call add_include_file ,libs /fst /fstapi .h ) )
2022-04-07 20:07:44 -05:00
e n d i f
2015-02-07 12:04:06 -06:00
$( eval $ ( call add_include_file ,libs /sha 1/sha 1.h ) )
2019-09-25 21:11:22 -05:00
$( eval $ ( call add_include_file ,libs /json 11/json 11.hpp ) )
2015-02-07 12:04:06 -06:00
$( 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 ) )
2020-04-20 10:06:53 -05:00
$( eval $ ( call add_include_file ,frontends /ast /ast_binding .h ) )
2021-06-16 14:47:47 -05:00
$( eval $ ( call add_include_file ,frontends /blif /blifparse .h ) )
2020-08-26 12:29:32 -05:00
$( eval $ ( call add_include_file ,backends /rtlil /rtlil_backend .h ) )
2015-02-07 12:04:06 -06:00
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
2020-04-20 10:06:53 -05:00
OBJS += kernel/binding.o
2024-07-11 05:30:23 -05:00
OBJS += kernel/cellaigs.o kernel/celledges.o kernel/cost.o kernel/satgen.o kernel/scopeinfo.o kernel/qcsat.o kernel/mem.o kernel/ffmerge.o kernel/ff.o kernel/yw.o kernel/json.o kernel/fmt.o kernel/sexpr.o
2024-07-25 06:10:59 -05:00
OBJS += kernel/drivertools.o kernel/functional.o
2022-04-07 20:07:44 -05:00
i f e q ( $( ENABLE_ZLIB ) , 1 )
OBJS += kernel/fstdata.o
e n d i f
2022-10-31 03:10:46 -05:00
i f e q ( $( ENABLE_PLUGINS ) , 1 )
i f e q ( $( OS ) , M I N G W )
OBJS += libs/dlfcn-win32/dlfcn.o
e n d i f
e n d i f
2016-07-24 06:59:57 -05:00
2015-02-07 12:04:06 -06:00
kernel/log.o : CXXFLAGS += -DYOSYS_SRC ='"$( YOSYS_SRC ) "'
2020-04-10 03:38:40 -05:00
kernel/yosys.o : CXXFLAGS += -DYOSYS_DATDIR ='"$( DATDIR ) "' -DYOSYS_PROGRAM_PREFIX ='"$( PROGRAM_PREFIX ) "'
2020-11-29 02:16:43 -06:00
i f e q ( $( ENABLE_ABC ) , 1 )
i f n e q ( $( ABCEXTERNAL ) , )
kernel/yosys.o : CXXFLAGS += -DABCEXTERNAL ='"$( ABCEXTERNAL ) "'
e n d i f
e n d i f
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
2019-09-25 21:11:22 -05:00
OBJS += libs/json11/json11.o
2014-03-13 06:48:10 -05:00
OBJS += libs/ezsat/ezsat.o
2013-06-07 03:38:35 -05:00
OBJS += libs/ezsat/ezminisat.o
2014-03-13 06:48:10 -05:00
2014-03-12 04:17:51 -05:00
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
2022-04-07 20:07:44 -05:00
i f e q ( $( ENABLE_ZLIB ) , 1 )
2022-01-25 02:53:41 -06:00
OBJS += libs/fst/fstapi.o
OBJS += libs/fst/fastlz.o
OBJS += libs/fst/lz4.o
2022-04-07 20:07:44 -05:00
e n d i f
2022-01-25 02:53:41 -06:00
2024-01-19 09:30:35 -06:00
i f n e q ( $( SMALL ) , 1 )
OBJS += libs/subcircuit/subcircuit.o
2015-08-12 08:04:44 -05:00
i n c l u d e $( YOSYS_SRC ) / f r o n t e n d s / * / M a k e f i l e . i n c
i n c l u d e $( YOSYS_SRC ) / p a s s e s / * / M a k e f i l e . i n c
i n c l u d e $( YOSYS_SRC ) / b a c k e n d s / * / M a k e f i l e . i n c
i n c l u d e $( YOSYS_SRC ) / t e c h l i b s / * / M a k e f i l e . i n c
2013-01-05 04:13:26 -06:00
2014-07-24 12:03:57 -05:00
e l s e
2020-04-24 18:26:26 -05:00
i n c l u d e $( YOSYS_SRC ) / f r o n t e n d s / v e r i l o g / M a k e f i l e . i n c
2024-01-19 09:30:35 -06:00
i f e q ( $( ENABLE_VERIFIC ) , 1 )
i n c l u d e $( YOSYS_SRC ) / f r o n t e n d s / v e r i f i c / M a k e f i l e . i n c
e n d i f
2020-08-26 12:29:32 -05:00
i n c l u d e $( YOSYS_SRC ) / f r o n t e n d s / r t l i l / M a k e f i l e . i n c
2020-04-24 18:26:26 -05:00
i n c l u d e $( YOSYS_SRC ) / f r o n t e n d s / a s t / M a k e f i l e . i n c
i n c l u d e $( YOSYS_SRC ) / f r o n t e n d s / b l i f / M a k e f i l e . i n c
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
2020-04-24 18:26:26 -05:00
i n c l u d e $( YOSYS_SRC ) / p a s s e s / p r o c / M a k e f i l e . i n c
i n c l u d e $( YOSYS_SRC ) / p a s s e s / o p t / M a k e f i l e . i n c
i n c l u d e $( YOSYS_SRC ) / p a s s e s / t e c h m a p / M a k e f i l e . i n c
2014-07-24 12:03:57 -05:00
2020-04-24 18:26:26 -05:00
i n c l u d e $( YOSYS_SRC ) / b a c k e n d s / v e r i l o g / M a k e f i l e . i n c
2020-08-26 12:29:32 -05:00
i n c l u d e $( YOSYS_SRC ) / b a c k e n d s / r t l i l / M a k e f i l e . i n c
2014-07-24 12:03:57 -05:00
2020-04-24 18:26:26 -05:00
i n c l u d e $( YOSYS_SRC ) / t e c h l i b s / c o m m o n / M a k e f i l e . i n c
2014-08-16 19:24:53 -05:00
2014-07-24 12:03:57 -05:00
e n d i f
2017-11-14 04:19:21 -06:00
i f e q ( $( LINK_ABC ) , 1 )
2020-04-10 03:38:40 -05:00
OBJS += $( PROGRAM_PREFIX) yosys-libabc.a
2017-11-14 04:19:21 -06:00
e n d i f
2020-10-27 08:04:28 -05:00
# prevent the CXXFLAGS set by this Makefile from reaching abc/Makefile,
# especially the -MD flag which will break the build when CXX is clang
u n export CXXFLAGS
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
2024-04-29 18:11:46 -05:00
.PHONY : compile -only
2024-04-29 18:18:42 -05:00
compile-only : $( OBJS ) $( GENFILES ) $( EXTRA_TARGETS )
2024-04-29 18:11:46 -05:00
@echo ""
@echo " Compile successful."
@echo ""
2024-10-09 04:44:52 -05:00
.PHONY : share
share : $( EXTRA_TARGETS )
@echo ""
@echo " Share directory created."
@echo ""
2020-04-10 03:38:40 -05:00
$(PROGRAM_PREFIX)yosys$(EXE) : $( OBJS )
2024-02-25 10:02:35 -06:00
$( P) $( CXX) -o $( PROGRAM_PREFIX) yosys$( EXE) $( EXE_LINKFLAGS) $( LINKFLAGS) $( OBJS) $( LIBS) $( LIBS_VERIFIC)
2015-08-04 06:22:49 -05:00
2020-04-10 08:02:48 -05:00
libyosys.so : $( filter -out kernel /driver .o ,$ ( OBJS ) )
2019-05-22 14:58:12 -05:00
i f e q ( $( OS ) , D a r w i n )
2024-08-12 06:21:05 -05:00
$( P) $( CXX) -o libyosys.so -shared -undefined dynamic_lookup -Wl,-install_name,$( LIBDIR) /libyosys.so $( LINKFLAGS) $^ $( LIBS) $( LIBS_VERIFIC)
2019-05-22 14:58:12 -05:00
e l s e
2024-02-25 10:02:35 -06:00
$( P) $( CXX) -o libyosys.so -shared -Wl,-soname,$( LIBDIR) /libyosys.so $( LINKFLAGS) $^ $( LIBS) $( LIBS_VERIFIC)
2019-05-22 14:58:12 -05:00
e n d i f
2014-07-24 10:15:01 -05:00
%.o : %.cc
2015-08-12 08:04:44 -05:00
$( Q) mkdir -p $( dir $@ )
2015-10-10 17:47:37 -05:00
$( P) $( CXX) -o $@ -c $( CPPFLAGS) $( CXXFLAGS) $<
2014-07-24 10:15:01 -05:00
2018-09-19 03:32:34 -05:00
%.pyh : %.h
$( Q) mkdir -p $( dir $@ )
2024-02-25 09:43:55 -06:00
$( P) cat $< | grep -E -v "#[ ]*(include|error)" | $( CXX) $( CXXFLAGS) -x c++ -o $@ -E -P -
2018-09-19 03:32:34 -05:00
2019-05-27 03:31:50 -05:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
2019-04-30 06:19:04 -05:00
$(PY_WRAPPER_FILE).cc : misc /$( PY_GEN_SCRIPT ) .py $( PY_WRAP_INCLUDES )
2018-09-19 03:32:34 -05:00
$( Q) mkdir -p $( dir $@ )
2019-04-30 06:19:04 -05:00
$( P) python$( PYTHON_VERSION) -c " from misc import $( PY_GEN_SCRIPT) ; $( PY_GEN_SCRIPT) .gen_wrappers(\" $( PY_WRAPPER_FILE) .cc\") "
2019-05-27 03:31:50 -05:00
e n d i f
2018-09-19 03:32:34 -05:00
2014-07-24 10:15:01 -05:00
%.o : %.cpp
2015-08-12 08:04:44 -05:00
$( Q) mkdir -p $( dir $@ )
2015-10-10 17:47:37 -05:00
$( 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) ) )
2015-08-12 08:04:44 -05:00
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
2013-08-20 02:48:12 -05:00
2018-02-13 08:22:50 -06:00
i f e q ( $( ENABLE_VERIFIC ) , 1 )
CXXFLAGS_NOVERIFIC = $( foreach v,$( CXXFLAGS) ,$( if $( findstring $( VERIFIC_DIR) ,$( v) ) ,,$( v) ) )
2024-02-25 10:02:35 -06:00
LIBS_NOVERIFIC = $( foreach v,$( LIBS) ,$( if $( findstring $( VERIFIC_DIR) ,$( v) ) ,,$( v) ) )
2018-02-13 08:22:50 -06:00
e l s e
CXXFLAGS_NOVERIFIC = $( CXXFLAGS)
2024-02-25 10:02:35 -06:00
LIBS_NOVERIFIC = $( LIBS)
2018-02-13 08:22:50 -06:00
e n d i f
2024-06-24 09:08:08 -05:00
$(PROGRAM_PREFIX)yosys-config : misc /yosys -config .in $( YOSYS_SRC ) /Makefile
2022-10-31 03:10:46 -05:00
$( P) $( SED) -e 's#@CXXFLAGS@#$(subst -Ilibs/dlfcn-win32,,$(subst -I. -I"$(YOSYS_SRC)",-I"$(DATDIR)/include",$(strip $(CXXFLAGS_NOVERIFIC))))#;' \
2024-02-25 10:02:35 -06:00
-e 's#@CXX@#$(strip $(CXX))#;' -e 's#@LINKFLAGS@#$(strip $(LINKFLAGS) $(PLUGIN_LINKFLAGS))#;' -e 's#@LIBS@#$(strip $(LIBS_NOVERIFIC) $(PLUGIN_LIBS))#;' \
2020-04-10 03:38:40 -05:00
-e 's#@BINDIR@#$(strip $(BINDIR))#;' -e 's#@DATDIR@#$(strip $(DATDIR))#;' < $< > $( PROGRAM_PREFIX) yosys-config
$( Q) chmod +x $( PROGRAM_PREFIX) yosys-config
2013-03-06 04:58:07 -06:00
2024-04-12 07:29:05 -05:00
.PHONY : check -git -abc
check-git-abc :
2024-04-14 12:56:07 -05:00
@if [ ! -d " $( YOSYS_SRC) /abc " ] ; then \
2024-05-09 02:22:48 -05:00
echo "Error: The 'abc' directory does not exist." ; \
echo "Initialize the submodule: Run 'git submodule update --init' to set up 'abc' as a submodule." ; \
exit 1; \
2024-04-14 12:56:07 -05:00
elif git -C " $( YOSYS_SRC) " submodule status abc 2>/dev/null | grep -q '^ ' ; then \
2024-05-09 02:22:48 -05:00
exit 0; \
2024-07-12 03:52:03 -05:00
elif [ -f " $( YOSYS_SRC) /abc/.gitcommit " ] && ! grep -q '\$$Format:%[hH]\$$' " $( YOSYS_SRC) /abc/.gitcommit " ; then \
2024-05-09 02:22:48 -05:00
echo "'abc' comes from a tarball. Continuing." ; \
exit 0; \
2024-07-12 03:52:03 -05:00
elif [ -f " $( YOSYS_SRC) /abc/.gitcommit " ] && grep -q '\$$Format:%[hH]\$$' " $( YOSYS_SRC) /abc/.gitcommit " ; then \
2024-05-09 02:22:48 -05:00
echo "Error: 'abc' is not configured as a git submodule." ; \
echo "To resolve this:" ; \
echo "1. Back up your changes: Save any modifications from the 'abc' directory to another location." ; \
echo "2. Remove the existing 'abc' directory: Delete the 'abc' directory and all its contents." ; \
echo "3. Initialize the submodule: Run 'git submodule update --init' to set up 'abc' as a submodule." ; \
echo "4. Reapply your changes: Move your saved changes back to the 'abc' directory, if necessary." ; \
exit 1; \
2024-04-14 12:56:07 -05:00
else \
2024-05-09 02:22:48 -05:00
echo "Initialize the submodule: Run 'git submodule update --init' to set up 'abc' as a submodule." ; \
exit 1; \
2024-04-12 07:29:05 -05:00
fi
2024-08-04 18:20:05 -05:00
abc/abc$(EXE) abc/libabc.a : | check -git -abc
2014-07-24 10:15:01 -05:00
$( P)
2024-04-12 00:08:18 -05:00
$( Q) mkdir -p abc && $( MAKE) -C $( PROGRAM_PREFIX) abc -f " $( realpath $( YOSYS_SRC) /abc/Makefile) " ABCSRC = " $( realpath $( YOSYS_SRC) /abc/) " $( S) $( ABCMKARGS) $( if $( filter %.a,$@ ) ,PROG= "abc" ,PROG= " abc $( EXE) " ) MSG_PREFIX = " $( eval P_OFFSET = 5) $( call P_SHOW) $( eval P_OFFSET = 10) ABC: " $( if $( filter %.a,$@ ) ,libabc.a)
$(PROGRAM_PREFIX)yosys-abc$(EXE) : abc /abc $( EXE )
2024-04-12 00:24:45 -05:00
$( P) cp $< $( PROGRAM_PREFIX) yosys-abc$( EXE)
2024-04-12 00:08:18 -05:00
$(PROGRAM_PREFIX)yosys-libabc.a : abc /libabc .a
2024-04-12 00:24:45 -05:00
$( P) cp $< $( PROGRAM_PREFIX) yosys-libabc.a
2017-11-14 04:19:21 -06:00
2016-09-15 03:00:29 -05:00
i f n e q ( $( SEED ) , )
SEEDOPT = " -S $( SEED) "
e l s e
SEEDOPT = ""
e n d i f
2019-06-27 21:54:09 -05:00
i f n e q ( $( ABCEXTERNAL ) , )
ABCOPT = " -A $( ABCEXTERNAL) "
e l s e
ABCOPT = ""
e n d i f
2024-02-14 05:07:47 -06:00
# When YOSYS_NOVERIFIC is set as a make variable, also export it to the
# enviornment, so that `YOSYS_NOVERIFIC=1 make test` _and_
# `make test YOSYS_NOVERIFIC=1` will run with verific disabled.
i f e q ( $( YOSYS_NOVERIFIC ) , 1 )
export YOSYS_NOVERIFIC
e n d i f
2014-03-12 04:46:27 -05:00
test : $( TARGETS ) $( EXTRA_TARGETS )
2023-02-27 02:27:04 -06:00
i f e q ( $( ENABLE_VERIFIC ) , 1 )
2024-02-14 05:07:47 -06:00
i f e q ( $( YOSYS_NOVERIFIC ) , 1 )
@echo
@echo "Running tests without verific support due to YOSYS_NOVERIFIC=1"
@echo
e l s e
2023-02-27 02:27:04 -06:00
+cd tests/verific && bash run-test.sh $( SEEDOPT)
2024-02-14 05:07:47 -06:00
e n d i f
2023-02-27 02:27:04 -06:00
e n d i f
2016-09-15 03:00:29 -05:00
+cd tests/simple && bash run-test.sh $( SEEDOPT)
2019-08-17 07:37:07 -05:00
+cd tests/simple_abc9 && bash run-test.sh $( SEEDOPT)
2016-09-15 03:00:29 -05:00
+cd tests/hana && bash run-test.sh $( SEEDOPT)
+cd tests/asicworld && bash run-test.sh $( SEEDOPT)
2019-03-14 18:48:23 -05:00
# +cd tests/realmath && bash run-test.sh $(SEEDOPT)
2016-09-15 03:00:29 -05:00
+cd tests/share && bash run-test.sh $( SEEDOPT)
2019-08-04 12:06:38 -05:00
+cd tests/opt_share && bash run-test.sh $( SEEDOPT)
2016-09-15 03:00:29 -05:00
+cd tests/fsm && bash run-test.sh $( SEEDOPT)
2014-07-30 12:21:52 -05:00
+cd tests/techmap && bash run-test.sh
2019-06-27 21:54:09 -05:00
+cd tests/memories && bash run-test.sh $( ABCOPT) $( SEEDOPT)
2022-05-06 09:30:56 -05:00
+cd tests/memlib && bash run-test.sh $( SEEDOPT)
2016-09-15 03:00:29 -05:00
+cd tests/bram && bash run-test.sh $( SEEDOPT)
2014-07-30 12:21:52 -05:00
+cd tests/various && bash run-test.sh
2020-03-23 01:13:48 -05:00
+cd tests/select && bash run-test.sh
2014-07-30 12:21:52 -05:00
+cd tests/sat && bash run-test.sh
2022-02-15 02:35:53 -06:00
+cd tests/sim && bash run-test.sh
2018-10-18 14:27:04 -05:00
+cd tests/svinterfaces && bash run-test.sh $( SEEDOPT)
2019-09-20 07:00:26 -05:00
+cd tests/svtypes && bash run-test.sh $( SEEDOPT)
2019-08-19 11:44:23 -05:00
+cd tests/proc && bash run-test.sh
2021-05-05 13:31:27 -05:00
+cd tests/blif && bash run-test.sh
2018-12-04 18:23:22 -06:00
+cd tests/opt && bash run-test.sh
2019-06-27 21:54:09 -05:00
+cd tests/aiger && bash run-test.sh $( ABCOPT)
2019-06-26 12:17:52 -05:00
+cd tests/arch && bash run-test.sh
2019-10-18 04:06:12 -05:00
+cd tests/arch/ice40 && bash run-test.sh $( SEEDOPT)
+cd tests/arch/xilinx && bash run-test.sh $( SEEDOPT)
+cd tests/arch/ecp5 && bash run-test.sh $( SEEDOPT)
2020-11-17 12:01:57 -06:00
+cd tests/arch/machxo2 && bash run-test.sh $( SEEDOPT)
2019-10-18 04:06:12 -05:00
+cd tests/arch/efinix && bash run-test.sh $( SEEDOPT)
+cd tests/arch/anlogic && bash run-test.sh $( SEEDOPT)
2019-10-28 08:28:03 -05:00
+cd tests/arch/gowin && bash run-test.sh $( SEEDOPT)
2019-11-19 04:19:00 -06:00
+cd tests/arch/intel_alm && bash run-test.sh $( SEEDOPT)
2024-05-06 08:25:29 -05:00
+cd tests/arch/nanoxplore && bash run-test.sh $( SEEDOPT)
2020-10-01 05:15:54 -05:00
+cd tests/arch/nexus && bash run-test.sh $( SEEDOPT)
2023-10-09 06:13:42 -05:00
+cd tests/arch/quicklogic/pp3 && bash run-test.sh $( SEEDOPT)
2023-11-27 05:14:48 -06:00
+cd tests/arch/quicklogic/qlf_k6n10f && bash run-test.sh $( SEEDOPT)
2021-09-24 09:00:59 -05:00
+cd tests/arch/gatemate && bash run-test.sh $( SEEDOPT)
2024-07-04 14:54:59 -05:00
+cd tests/arch/microchip && bash run-test.sh $( SEEDOPT)
2019-09-25 22:57:16 -05:00
+cd tests/rpc && bash run-test.sh
2020-02-01 19:44:06 -06:00
+cd tests/memfile && bash run-test.sh
2020-05-11 12:30:20 -05:00
+cd tests/verilog && bash run-test.sh
2022-11-25 10:48:15 -06:00
+cd tests/xprop && bash run-test.sh $( SEEDOPT)
2020-12-05 16:26:25 -06:00
+cd tests/fmt && bash run-test.sh
2023-12-13 06:02:30 -06:00
+cd tests/cxxrtl && bash run-test.sh
2024-09-06 01:47:43 -05:00
i f e q ( $( ENABLE_FUNCTIONAL_TESTS ) , 1 )
2024-09-04 04:30:08 -05:00
+cd tests/functional && bash run-test.sh
2024-09-06 01:47:43 -05:00
e n d i f
2014-07-26 07:08:20 -05:00
@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 )
2014-07-26 07:08:20 -05:00
@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 )
2014-07-30 12:21:52 -05:00
+cd tests/vloghtb && bash run-test.sh
2014-07-26 07:08:20 -05:00
@echo ""
@echo " Passed \"make vloghtb\"."
@echo ""
2014-07-23 19:11:12 -05:00
2018-08-30 05:26:26 -05:00
ystests : $( TARGETS ) $( EXTRA_TARGETS )
rm -rf tests/ystests
git clone https://github.com/YosysHQ/yosys-tests.git tests/ystests
2018-11-08 02:58:47 -06:00
+$( MAKE) PATH = " $$ PWD: $$ PATH " -C tests/ystests
2018-08-30 05:26:26 -05:00
@echo ""
@echo " Finished \"make ystests\"."
@echo ""
2016-12-04 07:28:25 -06:00
# Unit test
2020-04-10 08:02:48 -05:00
unit-test : libyosys .so
2024-10-09 12:39:45 -05:00
@$( MAKE) -C $( UNITESTPATH) CXX = " $( CXX) " CC = " $( CC) " CPPFLAGS = " $( CPPFLAGS) " \
CXXFLAGS = " $( CXXFLAGS) " LINKFLAGS = " $( LINKFLAGS) " LIBS = " $( LIBS) " ROOTPATH = " $( CURDIR) "
2016-12-04 07:28:25 -06:00
clean-unit-test :
@$( MAKE) -C $( UNITESTPATH) clean
2013-11-23 22:05:50 -06:00
install : $( TARGETS ) $( EXTRA_TARGETS )
2020-03-12 12:26:19 -05:00
$( INSTALL_SUDO) mkdir -p $( DESTDIR) $( BINDIR)
2020-04-10 08:02:48 -05:00
$( INSTALL_SUDO) cp $( filter-out libyosys.so,$( TARGETS) ) $( DESTDIR) $( BINDIR)
2020-04-10 03:38:40 -05:00
i f n e q ( $( filter $ ( PROGRAM_PREFIX ) yosys ,$ ( TARGETS ) ) , )
$( INSTALL_SUDO) $( STRIP) -S $( DESTDIR) $( BINDIR) /$( PROGRAM_PREFIX) yosys
2018-01-17 07:14:10 -06:00
e n d i f
2020-04-10 03:38:40 -05:00
i f n e q ( $( filter $ ( PROGRAM_PREFIX ) yosys -abc ,$ ( TARGETS ) ) , )
$( INSTALL_SUDO) $( STRIP) $( DESTDIR) $( BINDIR) /$( PROGRAM_PREFIX) yosys-abc
2018-01-17 07:14:10 -06:00
e n d i f
2020-04-10 03:38:40 -05:00
i f n e q ( $( filter $ ( PROGRAM_PREFIX ) yosys -filterlib ,$ ( TARGETS ) ) , )
$( INSTALL_SUDO) $( STRIP) $( DESTDIR) $( BINDIR) /$( PROGRAM_PREFIX) yosys-filterlib
2018-01-17 07:14:10 -06:00
e n d i f
2016-03-24 04:18:21 -05:00
$( INSTALL_SUDO) mkdir -p $( DESTDIR) $( DATDIR)
$( INSTALL_SUDO) cp -r share/. $( DESTDIR) $( DATDIR) /.
2015-08-04 13:25:26 -05:00
i f e q ( $( ENABLE_LIBYOSYS ) , 1 )
2020-03-12 12:26:19 -05:00
$( INSTALL_SUDO) mkdir -p $( DESTDIR) $( LIBDIR)
2020-04-10 08:02:48 -05:00
$( INSTALL_SUDO) cp libyosys.so $( DESTDIR) $( LIBDIR) /
$( INSTALL_SUDO) $( STRIP) -S $( DESTDIR) $( LIBDIR) /libyosys.so
2018-12-21 07:08:23 -06:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
2020-09-30 00:47:36 -05:00
$( INSTALL_SUDO) mkdir -p $( DESTDIR) $( PYTHON_DESTDIR) /$( subst -,_,$( PROGRAM_PREFIX) ) pyosys
$( INSTALL_SUDO) cp libyosys.so $( DESTDIR) $( PYTHON_DESTDIR) /$( subst -,_,$( PROGRAM_PREFIX) ) pyosys/libyosys.so
$( INSTALL_SUDO) cp misc/__init__.py $( DESTDIR) $( PYTHON_DESTDIR) /$( subst -,_,$( PROGRAM_PREFIX) ) pyosys/
2018-12-11 01:42:57 -06:00
e n d i f
2015-08-04 06:22:49 -05:00
e n d i f
2022-10-31 03:10:46 -05:00
i f e q ( $( ENABLE_PLUGINS ) , 1 )
i f e q ( $( OS ) , M I N G W )
$( INSTALL_SUDO) mkdir -p $( DESTDIR) $( LIBDIR)
$( INSTALL_SUDO) cp libyosys_exe.a $( DESTDIR) $( LIBDIR) /
e n d i f
e n d i f
2013-01-05 04:13:26 -06:00
2015-02-07 10:46:46 -06:00
uninstall :
2017-02-23 19:21:03 -06:00
$( INSTALL_SUDO) rm -vf $( addprefix $( DESTDIR) $( BINDIR) /,$( notdir $( TARGETS) ) )
2016-03-24 04:18:21 -05:00
$( INSTALL_SUDO) rm -rvf $( DESTDIR) $( DATDIR)
2015-08-04 13:25:26 -05:00
i f e q ( $( ENABLE_LIBYOSYS ) , 1 )
2020-04-10 08:02:48 -05:00
$( INSTALL_SUDO) rm -vf $( DESTDIR) $( LIBDIR) /libyosys.so
2018-12-21 07:08:23 -06:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
2020-09-30 00:47:36 -05:00
$( INSTALL_SUDO) rm -vf $( DESTDIR) $( PYTHON_DESTDIR) /$( subst -,_,$( PROGRAM_PREFIX) ) pyosys/libyosys.so
$( INSTALL_SUDO) rm -vf $( DESTDIR) $( PYTHON_DESTDIR) /$( subst -,_,$( PROGRAM_PREFIX) ) pyosys/__init__.py
$( INSTALL_SUDO) rmdir $( DESTDIR) $( PYTHON_DESTDIR) /$( subst -,_,$( PROGRAM_PREFIX) ) pyosys
2018-12-11 01:42:57 -06:00
e n d i f
2015-08-04 06:22:49 -05:00
e n d i f
2015-02-07 10:46:46 -06:00
2022-11-15 05:55:22 -06:00
# also others, but so long as it doesn't fail this is enough to know we tried
docs/source/cmd/abc.rst : $( TARGETS ) $( EXTRA_TARGETS )
2024-04-14 17:32:02 -05:00
$( Q) mkdir -p docs/source/cmd
$( Q) mkdir -p temp/docs/source/cmd
$( Q) cd temp && ./../$( PROGRAM_PREFIX) yosys -p 'help -write-rst-command-reference-manual'
$( Q) rsync -rc temp/docs/source/cmd docs/source
$( Q) rm -rf temp
2024-05-02 16:16:55 -05:00
docs/source/cell/word_add.rst : $( TARGETS ) $( EXTRA_TARGETS )
2024-04-14 17:32:02 -05:00
$( Q) mkdir -p docs/source/cell
$( Q) mkdir -p temp/docs/source/cell
$( Q) cd temp && ./../$( PROGRAM_PREFIX) yosys -p 'help -write-rst-cells-manual'
$( Q) rsync -rc temp/docs/source/cell docs/source
$( Q) rm -rf temp
2022-11-15 05:55:22 -06:00
2024-03-18 12:05:03 -05:00
PHONY : docs /gen_examples docs /gen_images docs /guidelines docs /usage docs /reqs
2024-10-06 16:26:29 -05:00
docs/gen_examples : $( TARGETS )
2024-01-24 17:35:03 -06:00
$( Q) $( MAKE) -C docs examples
2024-10-06 16:26:29 -05:00
docs/gen_images : $( TARGETS )
2024-01-24 17:35:03 -06:00
$( Q) $( MAKE) -C docs images
2022-11-15 05:55:22 -06:00
2022-11-24 08:56:44 -06:00
DOCS_GUIDELINE_FILES := GettingStarted CodingStyle
2024-10-06 16:26:29 -05:00
DOCS_GUIDELINE_SOURCE := $( addprefix guidelines/,$( DOCS_GUIDELINE_FILES) )
docs/guidelines docs/source/generated : $( DOCS_GUIDELINE_SOURCE )
2024-04-14 17:13:22 -05:00
$( Q) mkdir -p docs/source/generated
2024-10-06 16:26:29 -05:00
$( Q) cp -f $( DOCS_GUIDELINE_SOURCE) docs/source/generated
2022-11-24 08:56:44 -06:00
2024-04-12 18:20:36 -05:00
# some commands return an error and print the usage text to stderr
d e f i n e D O C _ U S A G E _ S T D E R R
2024-08-15 17:43:51 -05:00
docs/source/generated/$(1) : $( TARGETS ) docs /source /generated
-$( Q) ./$( PROGRAM_PREFIX) $( 1) --help 2> $$ @
2024-04-12 18:20:36 -05:00
e n d e f
2024-05-22 16:40:02 -05:00
DOCS_USAGE_STDERR := yosys-config yosys-filterlib
# The in-tree ABC (yosys-abc) is only built when ABCEXTERNAL is not set.
i f e q ( $( ABCEXTERNAL ) , )
DOCS_USAGE_STDERR += yosys-abc
e n d i f
2024-04-12 18:20:36 -05:00
$( foreach usage ,$ ( DOCS_USAGE_STDERR ) ,$ ( eval $ ( call DOC_USAGE_STDERR ,$ ( usage ) ) ) )
# others print to stdout
d e f i n e D O C _ U S A G E _ S T D O U T
2024-08-15 17:43:51 -05:00
docs/source/generated/$(1) : $( TARGETS ) docs /source /generated
$( Q) ./$( PROGRAM_PREFIX) $( 1) --help > $$ @
2024-04-12 18:20:36 -05:00
e n d e f
DOCS_USAGE_STDOUT := yosys yosys-smtbmc yosys-witness
$( foreach usage ,$ ( DOCS_USAGE_STDOUT ) ,$ ( eval $ ( call DOC_USAGE_STDOUT ,$ ( usage ) ) ) )
2024-04-14 17:13:22 -05:00
docs/usage : $( addprefix docs /source /generated /,$ ( DOCS_USAGE_STDOUT ) $ ( DOCS_USAGE_STDERR ) )
2023-10-31 16:13:28 -05:00
2024-03-18 12:05:03 -05:00
docs/reqs :
$( Q) $( MAKE) -C docs reqs
2024-08-28 16:58:41 -05:00
.PHONY : docs /prep
2024-05-02 16:16:55 -05:00
docs/prep : docs /source /cmd /abc .rst docs /source /cell /word_add .rst docs /gen_examples docs /gen_images docs /guidelines docs /usage
2024-08-28 16:58:41 -05:00
2022-11-15 05:55:22 -06:00
DOC_TARGET ?= html
2024-08-28 16:58:41 -05:00
docs : docs /prep
2024-05-07 08:35:25 -05:00
$( Q) $( MAKE) -C docs $( DOC_TARGET)
2022-11-15 05:55:22 -06:00
2013-01-05 04:13:26 -06:00
clean :
2014-04-04 17:39:03 -05:00
rm -rf share
2018-09-19 03:32:34 -05:00
rm -rf kernel/*.pyh
rm -f $( OBJS) $( GENFILES) $( TARGETS) $( EXTRA_TARGETS) $( EXTRA_OBJS) $( PY_WRAP_INCLUDES) $( PY_WRAPPER_FILE) .cc
2019-08-07 13:10:18 -05:00
rm -f kernel/version_*.o kernel/version_*.cc
2014-04-04 17:39:03 -05:00
rm -f libs/*/*.d frontends/*/*.d passes/*/*.d backends/*/*.d kernel/*.d techlibs/*/*.d
2017-07-03 11:33:11 -05:00
rm -rf tests/asicworld/*.out tests/asicworld/*.log
rm -rf tests/hana/*.out tests/hana/*.log
rm -rf tests/simple/*.out tests/simple/*.log
rm -rf tests/memories/*.out tests/memories/*.log tests/memories/*.dmp
rm -rf tests/sat/*.log tests/techmap/*.log tests/various/*.log
2022-02-18 10:13:09 -06:00
rm -rf tests/bram/temp tests/fsm/temp tests/realmath/temp tests/share/temp tests/smv/temp tests/various/temp
2017-07-03 11:33:11 -05:00
rm -rf vloghtb/Makefile vloghtb/refdat vloghtb/rtl vloghtb/scripts vloghtb/spec vloghtb/check_yosys vloghtb/vloghammer_tb.tar.bz2 vloghtb/temp vloghtb/log_test_*
2018-10-18 14:27:04 -05:00
rm -f tests/svinterfaces/*.log_stdout tests/svinterfaces/*.log_stderr tests/svinterfaces/dut_result.txt tests/svinterfaces/reference_result.txt tests/svinterfaces/a.out tests/svinterfaces/*_syn.v tests/svinterfaces/*.diff
2017-07-03 11:33:11 -05:00
rm -f tests/tools/cmp_tbdata
2024-02-05 02:50:41 -06:00
-$( MAKE) -C docs clean
-$( MAKE) -C docs/images clean
rm -rf docs/source/cmd docs/util/__pycache__
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
2020-04-10 03:38:40 -05:00
rm -f $( PROGRAM_PREFIX) yosys-abc$( EXE) $( PROGRAM_PREFIX) yosys-libabc.a abc/abc-[ 0-9a-f] * abc/libabc-[ 0-9a-f] *.a
2014-07-24 20:17:06 -05:00
2013-01-05 04:13:26 -06:00
mrproper : clean
2013-01-05 04:44:29 -06:00
git clean -xdf
2013-01-05 04:13:26 -06:00
2018-08-27 07:22:21 -05:00
coverage :
2020-04-10 03:38:40 -05:00
./$( PROGRAM_PREFIX) yosys -qp 'help; help -all'
2018-08-27 07:22:21 -05:00
rm -rf coverage.info coverage_html
lcov --capture -d . --no-external -o coverage.info
genhtml coverage.info --output-directory coverage_html
2024-07-05 07:50:00 -05:00
clean_coverage :
find . -name "*.gcda" -type f -delete
2024-09-04 18:43:31 -05:00
FUNC_KERNEL := functional.cc functional.h sexpr.cc sexpr.h compute_graph.h
FUNC_INCLUDES := $( addprefix --include *,functional/* $( FUNC_KERNEL) )
2024-07-05 07:50:00 -05:00
coverage_functional :
2024-09-04 18:43:31 -05:00
rm -rf coverage.info coverage_html
lcov --capture -d backends/functional -d kernel $( FUNC_INCLUDES) --no-external -o coverage.info
genhtml coverage.info --output-directory coverage_html
2024-07-05 07:50:00 -05:00
2013-01-05 04:13:26 -06:00
qtcreator :
2024-04-28 21:04:34 -05:00
echo " $( CXXFLAGS) " | grep -o '\-D[^ ]*' | tr ' ' '\n' | sed 's/-D/#define /' | sed 's/=/ /' > qtcreator.config
2013-01-05 04:13:26 -06:00
{ for file in $( basename $( OBJS) ) ; do \
for prefix in cc y l; do if [ -f $$ { file} .$$ { prefix} ] ; then echo $$ file.$$ { prefix} ; fi ; done \
2013-02-28 18:08:16 -06:00
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
2024-04-28 21:04:34 -05:00
touch qtcreator.creator
2013-01-05 04:13:26 -06:00
2014-11-11 17:26:47 -06:00
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 \
2024-06-17 09:55:36 -05:00
echo " Analyse: $$ f " >& 2; cpp -std= c++17 -MM -I. -D_YOSYS_ $$ f; done | sed 's,.*:,,; s,//*,/,g; s,/[^/]*/\.\./,/,g; y, \\,\n\n,;' | grep '^[^/]' | sort -u | grep -v kernel/version_ > srcfiles.txt
2014-11-11 17:26:47 -06:00
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
i f e q ( $( CONFIG ) , m x e )
2014-11-11 17:26:47 -06:00
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)
2020-04-10 03:38:40 -05:00
cp -r $( PROGRAM_PREFIX) yosys.exe share/ yosys-win32-mxebin-$( YOSYS_VER) /
2014-10-12 07:48:19 -05:00
i f e q ( $( ENABLE_ABC ) , 1 )
2020-04-10 03:38:40 -05:00
cp -r $( PROGRAM_PREFIX) yosys-abc.exe abc/lib/x86/pthreadVC2.dll yosys-win32-mxebin-$( YOSYS_VER) /
2014-10-12 07:48:19 -05:00
e n d i f
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
2021-06-09 05:16:56 -05:00
echo -en 'Documentation at https://yosyshq.net/yosys/.\r\n' >> yosys-win32-mxebin-$( YOSYS_VER) /readme.txt
2014-10-18 08:17:33 -05:00
zip -r yosys-win32-mxebin-$( YOSYS_VER) .zip yosys-win32-mxebin-$( YOSYS_VER) /
2014-10-11 04:53:36 -05:00
e n d i f
2013-03-07 10:34:40 -06:00
config-clean : clean
rm -f Makefile.conf
2014-07-31 16:14:17 -05:00
config-clang : clean
echo 'CONFIG := clang' > Makefile.conf
2013-03-07 10:34:40 -06:00
2014-07-31 16:14:17 -05:00
config-gcc : clean
echo 'CONFIG := gcc' > Makefile.conf
2013-03-07 10:34:40 -06:00
2018-08-18 07:00:55 -05:00
config-gcc-static : clean
echo 'CONFIG := gcc-static' > Makefile.conf
echo 'ENABLE_PLUGINS := 0' >> Makefile.conf
echo 'ENABLE_READLINE := 0' >> Makefile.conf
echo 'ENABLE_TCL := 0' >> Makefile.conf
2019-05-27 13:43:10 -05:00
config-afl-gcc : clean
echo 'CONFIG := afl-gcc' > Makefile.conf
2019-11-11 03:23:06 -06:00
config-wasi : clean
echo 'CONFIG := wasi' > 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
echo 'ENABLE_ZLIB := 0' >> Makefile.conf
2014-10-09 03:50:44 -05:00
config-mxe : clean
echo 'CONFIG := mxe' > Makefile.conf
echo 'ENABLE_PLUGINS := 0' >> Makefile.conf
2020-12-26 22:37:46 -06:00
config-msys2-32 : clean
echo 'CONFIG := msys2-32' > Makefile.conf
echo " PREFIX := $( MINGW_PREFIX) " >> Makefile.conf
2016-08-16 13:41:37 -05:00
2018-06-27 15:33:34 -05:00
config-msys2-64 : clean
echo 'CONFIG := msys2-64' > Makefile.conf
2020-12-26 22:37:46 -06:00
echo " PREFIX := $( MINGW_PREFIX) " >> Makefile.conf
2018-06-27 15:33:34 -05:00
2018-09-19 03:16:53 -05:00
config-cygwin : clean
echo 'CONFIG := cygwin' > Makefile.conf
2018-08-27 06:27:05 -05:00
config-gcov : clean
echo 'CONFIG := gcc' > Makefile.conf
echo 'ENABLE_GCOV := 1' >> Makefile.conf
echo 'ENABLE_DEBUG := 1' >> Makefile.conf
2013-03-28 10:50:50 -05:00
config-gprof : clean
2014-07-31 16:14:17 -05:00
echo 'CONFIG := gcc' > Makefile.conf
2013-03-28 10:50:50 -05:00
echo 'ENABLE_GPROF := 1' >> Makefile.conf
2013-11-19 16:13:41 -06:00
config-sudo :
echo "INSTALL_SUDO := sudo" >> Makefile.conf
2015-01-18 09:09:42 -06:00
echo-yosys-ver :
@echo " $( YOSYS_VER) "
echo-git-rev :
@echo " $( GIT_REV) "
2024-03-07 23:08:19 -06:00
echo-cxx :
@echo " $( CXX) "
2013-03-07 10:34:40 -06:00
- i n c l u d e l i b s / * / * . d
2013-01-05 04:13:26 -06:00
- i n c l u d e f r o n t e n d s / * / * . d
- i n c l u d e p a s s e s / * / * . d
- i n c l u d e b a c k e n d s / * / * . d
- i n c l u d e k e r n e l / * . d
2014-02-11 05:58:08 -06:00
- i n c l u d e t e c h l i b s / * / * . d
2013-01-05 04:13:26 -06:00
2022-12-18 15:08:40 -06:00
.PHONY : all top -all abc test install install -abc docs clean mrproper qtcreator coverage vcxsrc mxebin
2023-01-11 02:54:19 -06:00
.PHONY : config -clean config -clang config -gcc config -gcc -static config -afl -gcc config -gprof config -sudo