You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
.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
|
|
|