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-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-03-28 10:50:50 -05:00
|
|
|
ENABLE_GPROF := 0
|
|
|
|
|
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
|
|
|
|
LDLIBS = -lstdc++ -lreadline -lm -ldl
|
2013-07-03 16:54:43 -05:00
|
|
|
QMAKE = qmake-qt4
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2013-08-20 02:48:12 -05:00
|
|
|
YOSYS_VER := 0.0.x
|
|
|
|
GIT_REV := $(shell git rev-parse --short HEAD || echo UNKOWN)
|
|
|
|
OBJS = kernel/version_$(GIT_REV).o
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
-include Makefile.conf
|
|
|
|
|
|
|
|
ifeq ($(CONFIG),clang-debug)
|
|
|
|
CXX = clang
|
|
|
|
CXXFLAGS += -std=c++11 -O0
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG),gcc-debug)
|
|
|
|
CXX = gcc
|
|
|
|
CXXFLAGS += -std=gnu++0x -O0
|
|
|
|
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)
|
|
|
|
CXXFLAGS += -pg
|
|
|
|
LDFLAGS += -pg
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ENABLE_QT4),1)
|
|
|
|
TARGETS += yosys-svgviewer
|
|
|
|
endif
|
2013-03-28 06:26:17 -05:00
|
|
|
|
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
|
|
|
|
sed 's,@CXX@,$(CXX),; s,@CXXFLAGS@,$(CXXFLAGS),; s,@LDFLAGS@,$(LDFLAGS),; s,@LDLIBS@,$(LDLIBS),;' < yosys-config.in > yosys-config
|
|
|
|
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-06-08 16:48:19 -05:00
|
|
|
abc:
|
|
|
|
test -d abc || hg clone https://bitbucket.org/alanmi/abc abc
|
2013-08-20 02:46:05 -05:00
|
|
|
cd abc && hg pull && hg update && make
|
2013-06-08 16:48:19 -05:00
|
|
|
cp abc/abc 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
|
|
|
|
|
2013-03-28 10:50:50 -05:00
|
|
|
install: $(TARGETS)
|
|
|
|
install $(TARGETS) /usr/local/bin/
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2013-06-08 16:48:19 -05:00
|
|
|
install-abc:
|
|
|
|
install yosys-abc /usr/local/bin/
|
|
|
|
|
2013-07-20 08:19:12 -05:00
|
|
|
manual:
|
|
|
|
cd manual && bash make.sh
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
clean:
|
|
|
|
rm -f $(OBJS) $(GENFILES) $(TARGETS)
|
2013-08-20 02:48:12 -05:00
|
|
|
rm -f kernel/version_*.o kernel/version_*.cc
|
2013-03-07 10:34:40 -06:00
|
|
|
rm -f libs/*/*.d frontends/*/*.d passes/*/*.d backends/*/*.d kernel/*.d
|
2013-07-23 07:19:47 -05:00
|
|
|
cd manual && rm -f *.aux *.bbl *.blg *.idx *.log *.out *.pdf *.toc
|
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
|
|
|
|
echo 'CONFIG := release' > Makefile.conf
|
|
|
|
echo 'ENABLE_GPROF := 1' >> 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
|
|
|
|
|