| # Copyright 2018 Google LLC |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| # Set path to prebuilts used in the build. |
| UNNAME_S := $(shell uname -s | tr '[:upper:]' '[:lower:]') |
| PREBUILTS := $(PWD)/prebuilts/$(UNNAME_S)-x64 |
| GN ?= $(PREBUILTS)/gn/gn |
| NINJA ?= $(PREBUILTS)/ninja/ninja |
| export PATH := $(PREBUILTS)/clang/bin:$(PATH) |
| |
| # Select the project to build. |
| PROJECT ?= reference |
| |
| OUT ?= out |
| OUT_DIR = out |
| |
| .PHONY: all |
| all: $(OUT_DIR)/build.ninja |
| @$(NINJA) -C $(OUT_DIR) |
| |
| $(OUT_DIR)/build.ninja: |
| @$(GN) --export-compile-commands gen --args='project="$(PROJECT)"' $(OUT_DIR) |
| |
| .PHONY: clean |
| clean: |
| @$(NINJA) -C $(OUT_DIR) -t clean |
| |
| .PHONY: clobber |
| clobber: |
| rm -rf $(OUT) |
| |
| # see .clang-format. |
| .PHONY: format |
| format: |
| @echo "Formatting..." |
| @find src/ -name \*.c -o -name \*.cc -o -name \*.h | xargs clang-format -style file -i |
| @find inc/ -name \*.c -o -name \*.cc -o -name \*.h | xargs clang-format -style file -i |
| @find test/ -name \*.c -o -name \*.cc -o -name \*.h | xargs clang-format -style file -i |
| @find project/ -name \*.c -o -name \*.cc -o -name \*.h | xargs clang-format -style file -i |
| @find . \( -name \*.gn -o -name \*.gni \) | xargs -n1 $(GN) format |
| |
| # see .clang-tidy. |
| .PHONY: tidy |
| tidy: $(OUT_DIR)/build.ninja |
| @$(NINJA) -C $(OUT_DIR) |
| @echo "Tidying..." |
| # TODO: enable readability-magic-numbers once there are fewer violations. |
| # TODO: enable for c++ tests as it currently gives spurious errors. |
| @find src/ \( -name \*.c \) | xargs clang-tidy -p $(OUT_DIR) -fix |
| @find test/ \( -name \*.c \) | xargs clang-tidy -p $(OUT_DIR) -fix |
| |
| .PHONY: check |
| check: $(OUT_DIR)/build.ninja |
| @$(NINJA) -C $(OUT_DIR) |
| @echo "Checking..." |
| # TODO: enable for c++ tests as it currently gives spurious errors. |
| @find src/ \( -name \*.c \) | xargs clang-check -p $(OUT_DIR) -analyze -fix-what-you-can |
| @find test/ \( -name \*.c \) | xargs clang-check -p $(OUT_DIR) -analyze -fix-what-you-can |
| |
| .PHONY: license |
| license: |
| @find src/ -name \*.S -o -name \*.c -o -name \*.cc -o -name \*.h | xargs -n1 python build/license.py --style c |
| @find inc/ -name \*.S -o -name \*.c -o -name \*.cc -o -name \*.h | xargs -n1 python build/license.py --style c |
| @find test/ -name \*.S -o -name \*.c -o -name \*.cc -o -name \*.h | xargs -n1 python build/license.py --style c |
| @find build/ -name \*.py| xargs -n1 python build/license.py --style hash |
| @find test/ -name \*.py| xargs -n1 python build/license.py --style hash |
| @find . \( -name \*.gn -o -name \*.gni \) | xargs -n1 python build/license.py --style hash |