mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
17 lines
266 B
Makefile
17 lines
266 B
Makefile
.PHONY: default
|
|
default: all
|
|
|
|
.PHONY: all
|
|
all: \
|
|
cpplint-all
|
|
|
|
CXX_SRCS := $(wildcard *.cpp)
|
|
|
|
#### cpplint, check extracted sources using cpplint tool
|
|
CXX_LINT := ${CXX_SRCS:.cpp=.lint}
|
|
|
|
.PHONY: cpplint-all
|
|
cpplint-all:
|
|
@python ../../python/cpplint_wrap.py *.cpp
|
|
|