mirror of https://github.com/YosysHQ/yosys.git
77 lines
2.0 KiB
Makefile
77 lines
2.0 KiB
Makefile
|
|
||
|
CONFIG := clang-debug
|
||
|
# CONFIG := gcc-debug
|
||
|
# CONFIG := release
|
||
|
|
||
|
OBJS = kernel/driver.o kernel/register.o kernel/rtlil.o kernel/log.o kernel/sha1.o kernel/calc.o kernel/select.o kernel/show.o
|
||
|
OBJS += bigint/BigIntegerAlgorithms.o bigint/BigInteger.o bigint/BigIntegerUtils.o bigint/BigUnsigned.o bigint/BigUnsignedInABase.o
|
||
|
|
||
|
GENFILES =
|
||
|
TARGETS = yosys
|
||
|
|
||
|
all: top-all
|
||
|
|
||
|
CXXFLAGS = -Wall -Wextra -ggdb -I$(shell pwd) -MD
|
||
|
LDFLAGS =
|
||
|
LDLIBS = -lstdc++ -lreadline -lm
|
||
|
|
||
|
-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
|
||
|
|
||
|
include frontends/*/Makefile.inc
|
||
|
include passes/*/Makefile.inc
|
||
|
include backends/*/Makefile.inc
|
||
|
include techlibs/Makefile.inc
|
||
|
|
||
|
top-all: $(TARGETS)
|
||
|
|
||
|
yosys: $(OBJS)
|
||
|
$(CXX) -o yosys $(LDFLAGS) $(OBJS) $(LDLIBS)
|
||
|
|
||
|
test: yosys
|
||
|
cd tests/simple && bash run-test.sh
|
||
|
cd tests/hana && bash run-test.sh
|
||
|
cd tests/asicworld && bash run-test.sh
|
||
|
|
||
|
help:
|
||
|
@find -name '*.cc' | xargs egrep -h '(Pass|Frontend|Backend)\(".*"\)' | \
|
||
|
sed 's,.*: ,,; s, .*,,;' | sort | tr '\n' '\t' | expand -t25 | fmt
|
||
|
|
||
|
install: yosys
|
||
|
install yosys /usr/local/bin/yosys
|
||
|
|
||
|
clean:
|
||
|
rm -f $(OBJS) $(GENFILES) $(TARGETS)
|
||
|
rm -f bigint/*.d frontends/*/*.d passes/*/*.d backends/*/*.d kernel/*.d
|
||
|
|
||
|
mrproper: clean
|
||
|
svn st --no-ignore | grep '^[?I]' | cut -c8- | sed 's,^ *,,; /^Makefile.conf$$/ d;' | xargs -r -d '\n' rm -vrf
|
||
|
|
||
|
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 bigint frontends kernel passes -type f \( -name '*.h' -o -name '*.hh' \); } > qtcreator.files
|
||
|
{ echo .; find backends bigint frontends kernel passes -type f \( -name '*.h' -o -name '*.hh' \) -printf '%h\n' | sort -u; } > qtcreator.includes
|
||
|
touch qtcreator.config qtcreator.creator
|
||
|
|
||
|
-include bigint/*.d
|
||
|
-include frontends/*/*.d
|
||
|
-include passes/*/*.d
|
||
|
-include backends/*/*.d
|
||
|
-include kernel/*.d
|
||
|
|