2013-01-05 04:13:26 -06:00
|
|
|
|
2013-03-06 02:46:21 -06:00
|
|
|
CONFIG := clang-debug
|
2013-01-05 04:13:26 -06:00
|
|
|
# CONFIG := gcc-debug
|
2013-03-06 02:46:21 -06:00
|
|
|
# CONFIG := release
|
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
|
|
|
|
ENABLE_QT4 := 1
|
2013-06-07 03:38:35 -05:00
|
|
|
ENABLE_MINISAT := 1
|
2013-11-27 02:08:35 -06:00
|
|
|
ENABLE_ABC := 1
|
|
|
|
|
|
|
|
# other configuration flags
|
2013-03-28 10:50:50 -05:00
|
|
|
ENABLE_GPROF := 0
|
|
|
|
|
2013-11-19 16:13:41 -06:00
|
|
|
DESTDIR := /usr/local
|
|
|
|
INSTALL_SUDO :=
|
2013-11-04 04:15:15 -06:00
|
|
|
|
2013-06-07 03:38:35 -05:00
|
|
|
OBJS =
|
2013-01-05 04:13:26 -06:00
|
|
|
GENFILES =
|
2013-03-28 10:53:40 -05:00
|
|
|
EXTRA_TARGETS =
|
2013-03-28 10:50:50 -05:00
|
|
|
TARGETS = yosys yosys-config
|
2013-01-05 04:13:26 -06:00
|
|
|
|
|
|
|
all: top-all
|
|
|
|
|
2013-03-06 04:58:07 -06:00
|
|
|
CXXFLAGS = -Wall -Wextra -ggdb -I"$(shell pwd)" -MD -D_YOSYS_ -fPIC
|
|
|
|
LDFLAGS = -rdynamic
|
2013-11-22 07:08:10 -06:00
|
|
|
LDLIBS = -lstdc++ -lreadline -lm -ldl -lrt
|
2013-07-03 16:54:43 -05:00
|
|
|
QMAKE = qmake-qt4
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2013-11-26 23:29:13 -06:00
|
|
|
YOSYS_VER := 0.1.0+
|
2013-08-20 02:48:12 -05:00
|
|
|
GIT_REV := $(shell git rev-parse --short HEAD || echo UNKOWN)
|
|
|
|
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..
|
2014-02-06 15:18:17 -06:00
|
|
|
ABCREV = 10cc13a2a0f1
|
2013-11-16 08:17:32 -06:00
|
|
|
ABCPULL = 1
|
2013-10-03 09:03:30 -05:00
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
-include Makefile.conf
|
|
|
|
|
|
|
|
ifeq ($(CONFIG),clang-debug)
|
|
|
|
CXX = clang
|
2013-11-21 21:05:30 -06:00
|
|
|
CXXFLAGS += -std=c++11 -Os
|
2013-01-05 04:13:26 -06:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG),gcc-debug)
|
|
|
|
CXX = gcc
|
2013-11-21 21:05:30 -06:00
|
|
|
CXXFLAGS += -std=gnu++0x -Os
|
2013-01-05 04:13:26 -06:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG),release)
|
|
|
|
CXX = gcc
|
|
|
|
CXXFLAGS += -std=gnu++0x -march=native -O3 -DNDEBUG
|
|
|
|
endif
|
|
|
|
|
2013-03-28 10:50:50 -05:00
|
|
|
ifeq ($(ENABLE_TCL),1)
|
2013-03-28 06:26:17 -05:00
|
|
|
CXXFLAGS += -I/usr/include/tcl8.5 -DYOSYS_ENABLE_TCL
|
|
|
|
LDLIBS += -ltcl8.5
|
2013-03-28 10:50:50 -05:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ENABLE_GPROF),1)
|
2013-11-21 21:05:30 -06:00
|
|
|
CXXFLAGS += -pg -fno-inline
|
2013-03-28 10:50:50 -05:00
|
|
|
LDFLAGS += -pg
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ENABLE_QT4),1)
|
|
|
|
TARGETS += yosys-svgviewer
|
|
|
|
endif
|
2013-03-28 06:26:17 -05:00
|
|
|
|
2013-11-27 02:08:35 -06:00
|
|
|
ifeq ($(ENABLE_ABC),1)
|
|
|
|
TARGETS += yosys-abc
|
|
|
|
endif
|
|
|
|
|
2013-06-08 16:16:36 -05:00
|
|
|
OBJS += kernel/driver.o kernel/register.o kernel/rtlil.o kernel/log.o kernel/calc.o
|
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
|
|
|
|
OBJS += libs/subcircuit/subcircuit.o
|
|
|
|
OBJS += libs/ezsat/ezsat.o
|
|
|
|
|
|
|
|
ifeq ($(ENABLE_MINISAT),1)
|
|
|
|
CXXFLAGS += -DYOSYS_ENABLE_MINISAT
|
|
|
|
OBJS += libs/ezsat/ezminisat.o
|
|
|
|
LDLIBS += -lminisat
|
|
|
|
endif
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
include frontends/*/Makefile.inc
|
|
|
|
include passes/*/Makefile.inc
|
|
|
|
include backends/*/Makefile.inc
|
2013-09-15 04:52:57 -05:00
|
|
|
include techlibs/*/Makefile.inc
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2013-03-28 10:53:40 -05:00
|
|
|
top-all: $(TARGETS) $(EXTRA_TARGETS)
|
2013-01-05 04:13:26 -06:00
|
|
|
|
|
|
|
yosys: $(OBJS)
|
|
|
|
$(CXX) -o yosys $(LDFLAGS) $(OBJS) $(LDLIBS)
|
|
|
|
|
2013-08-20 03:12:54 -05:00
|
|
|
kernel/version_$(GIT_REV).cc: Makefile
|
|
|
|
rm -f kernel/version_*.o kernel/version_*.d kernel/version_*.cc
|
2013-08-20 02:48:12 -05:00
|
|
|
echo "extern const char *yosys_version_str; const char *yosys_version_str=\"Yosys $(YOSYS_VER) (git sha1 $(GIT_REV))\";" > kernel/version_$(GIT_REV).cc
|
|
|
|
|
2013-03-06 04:58:07 -06:00
|
|
|
yosys-config: yosys-config.in
|
2013-11-19 15:48:48 -06:00
|
|
|
sed -e 's,@CXX@,$(CXX),;' -e 's,@CXXFLAGS@,$(CXXFLAGS),;' -e 's,@LDFLAGS@,$(LDFLAGS),;' -e 's,@LDLIBS@,$(LDLIBS),;' \
|
|
|
|
-e 's,@BINDIR@,$(DESTDIR)/bin,;' -e 's,@DATDIR@,$(DESTDIR)/share/yosys,;' < yosys-config.in > yosys-config
|
2013-03-06 04:58:07 -06:00
|
|
|
chmod +x yosys-config
|
|
|
|
|
2013-03-27 12:14:16 -05:00
|
|
|
yosys-svgviewer: libs/svgviewer/*.h libs/svgviewer/*.cpp
|
2013-07-03 16:54:43 -05:00
|
|
|
cd libs/svgviewer && $(QMAKE) && make
|
2013-03-28 10:50:50 -05:00
|
|
|
cp libs/svgviewer/svgviewer yosys-svgviewer
|
2013-03-27 04:51:15 -05:00
|
|
|
|
2013-11-27 02:08:35 -06:00
|
|
|
abc/abc-$(ABCREV):
|
2013-12-03 09:50:14 -06:00
|
|
|
ifneq ($(ABCREV),default)
|
2013-11-27 17:43:17 -06:00
|
|
|
if test "`cd abc && hg identify | cut -f1 -d' '`" != "$(ABCREV)"; then \
|
2013-11-27 02:08:35 -06:00
|
|
|
test $(ABCPULL) -ne 0 || { echo; echo "!!! ABC not up to date and ABCPULL set to 0 in Makefile !!!"; echo; exit 1; }; \
|
|
|
|
test -d abc || hg clone https://bitbucket.org/alanmi/abc abc; \
|
|
|
|
cd abc && hg pull && hg update -r $(ABCREV); \
|
|
|
|
fi
|
2013-12-03 09:50:14 -06:00
|
|
|
endif
|
2013-11-27 17:43:17 -06:00
|
|
|
rm -f abc/abc-[0-9a-f]*
|
|
|
|
cd abc && $(MAKE) PROG="abc-$(ABCREV)" MSG_PREFIX="YOSYS-ABC: "
|
2013-11-27 02:08:35 -06:00
|
|
|
|
2013-12-04 01:31:52 -06:00
|
|
|
ifeq ($(ABCREV),default)
|
|
|
|
.PHONY: abc/abc-$(ABCREV)
|
|
|
|
endif
|
|
|
|
|
2013-11-27 02:08:35 -06:00
|
|
|
yosys-abc: abc/abc-$(ABCREV)
|
|
|
|
cp abc/abc-$(ABCREV) yosys-abc
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
test: yosys
|
|
|
|
cd tests/simple && bash run-test.sh
|
|
|
|
cd tests/hana && bash run-test.sh
|
|
|
|
cd tests/asicworld && bash run-test.sh
|
2014-02-04 06:43:34 -06:00
|
|
|
cd tests/sat && bash run-test.sh
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2013-11-23 22:05:50 -06:00
|
|
|
install: $(TARGETS) $(EXTRA_TARGETS)
|
2013-11-19 16:13:41 -06:00
|
|
|
$(INSTALL_SUDO) mkdir -p $(DESTDIR)/bin
|
|
|
|
$(INSTALL_SUDO) install $(TARGETS) $(DESTDIR)/bin/
|
|
|
|
$(INSTALL_SUDO) mkdir -p $(DESTDIR)/share/yosys
|
|
|
|
$(INSTALL_SUDO) cp -r share/. $(DESTDIR)/share/yosys/.
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2013-07-20 08:19:12 -05:00
|
|
|
manual:
|
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:
|
2013-10-27 03:33:26 -05:00
|
|
|
rm -rf share
|
2013-01-05 04:13:26 -06:00
|
|
|
rm -f $(OBJS) $(GENFILES) $(TARGETS)
|
2013-11-27 17:43:17 -06:00
|
|
|
rm -f kernel/version_*.o kernel/version_*.cc abc/abc-[0-9a-f]*
|
2013-03-07 10:34:40 -06:00
|
|
|
rm -f libs/*/*.d frontends/*/*.d passes/*/*.d backends/*/*.d kernel/*.d
|
2013-11-28 06:48:38 -06:00
|
|
|
cd manual && rm -f *.aux *.bbl *.blg *.idx *.log *.out *.pdf *.toc *.ok
|
2013-03-27 04:51:15 -05:00
|
|
|
test ! -f libs/svgviewer/Makefile || make -C libs/svgviewer distclean
|
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
|
|
|
|
|
|
|
qtcreator:
|
|
|
|
{ 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
|
2013-01-05 04:13:26 -06:00
|
|
|
touch qtcreator.config qtcreator.creator
|
|
|
|
|
2013-03-07 10:34:40 -06:00
|
|
|
config-clean: clean
|
|
|
|
rm -f Makefile.conf
|
|
|
|
|
|
|
|
config-clang-debug: clean
|
|
|
|
echo 'CONFIG := clang-debug' > Makefile.conf
|
|
|
|
|
|
|
|
config-gcc-debug: clean
|
|
|
|
echo 'CONFIG := gcc-debug' > Makefile.conf
|
|
|
|
|
|
|
|
config-release: clean
|
|
|
|
echo 'CONFIG := release' > Makefile.conf
|
|
|
|
|
2013-03-28 10:50:50 -05:00
|
|
|
config-gprof: clean
|
2013-11-22 07:08:10 -06:00
|
|
|
echo 'CONFIG := gcc-debug' > 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
|
|
|
|
|
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
|
|
|
|
|
2013-07-20 08:19:12 -05:00
|
|
|
.PHONY: all top-all abc test install install-abc manual clean mrproper qtcreator
|
2013-03-07 10:34:40 -06:00
|
|
|
.PHONY: config-clean config-clang-debug config-gcc-debug config-release
|
|
|
|
|