mirror of https://github.com/openXC7/prjxray.git
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
CLANG_FORMAT ?= clang-format-5.0
|
|
PYTHON_FORMAT ?= yapf
|
|
TCL_FORMAT ?= utils//tcl-reformat.sh
|
|
|
|
.PHONY: database format clean env
|
|
|
|
IN_ENV = if [ -e env/bin/activate ]; then . env/bin/activate; fi;
|
|
env:
|
|
virtualenv --python=python3 --system-site-packages env
|
|
. env/bin/activate; pip install -r requirements.txt
|
|
ln -sf $(PWD)/prjxray env/lib/python3.*/site-packages/
|
|
. env/bin/activate; python -c "import yaml" || (echo "Unable to find python-yaml" && exit 1)
|
|
|
|
build:
|
|
git submodule update --init --recursive
|
|
mkdir -p build
|
|
cd build; cmake ..; $(MAKE)
|
|
|
|
database: build
|
|
$(MAKE) -C $@
|
|
|
|
FORMAT_EXCLUDE = third_party .git env build
|
|
FIND_EXCLUDE = $(foreach x,$(FORMAT_EXCLUDE),-and -not -path './$(x)/*')
|
|
format:
|
|
find . -name \*.cc $(FIND_EXCLUDE) -print0 | xargs -0 -P $$(nproc) ${CLANG_FORMAT} -style=file -i
|
|
find . -name \*.h $(FIND_EXCLUDE) -print0 | xargs -0 -P $$(nproc) ${CLANG_FORMAT} -style=file -i
|
|
$(IN_ENV) find . -name \*.py $(FIND_EXCLUDE) -print0 | xargs -0 -P $$(nproc) yapf -p -i
|
|
find . -name \*.tcl $(FIND_EXCLUDE) -print0 | xargs -0 -P $$(nproc) -n 1 $(TCL_FORMAT)
|
|
|
|
clean:
|
|
$(MAKE) -C database clean
|
|
$(MAKE) -C fuzzers clean
|
|
rm -rf build
|