blob: 36a3035cbdb281fba0af555879fb2f8e6f197d04 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
CXX ?= g++
.PHONY: meowpp_unittest meowpp_unittest_clean
meowpp_unittest:
cd '$(MEOWPP_UNITTEST_DIR)' && \
./test.py -c '$(CXX) -g -Wall -Werror -std=c++11 -pedantic' -p '$(CURRENT_DIR)'
meowpp_unittest_clean:
find '$(MEOWPP_UNITTEST_DIR)' -regex '^.*\.test$$' -exec rm {} \;
find '$(MEOWPP_UNITTEST_DIR)' -regex '^.*\.log[0-9]*$$' -exec rm {} \;
|