blob: b0878307c80f3a0b0761b4a2b0995851b9a000e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
CXX ?= g++
CXXFLAGS ?= -g -Wall -Werror -std=c++11 -pedantic
.PHONY: meowpp_test meowpp_test_clean
meowpp_test:
meowpp/test.py -c '$(CXX) $(CXXFLAGS)' -p '$(CURRENT_DIR)' -P '$(MEOWPP_DIR)'
meowpp_test_clean:
find '$(MEOWPP_DIR)' -regex '^.*\.bin$$' -exec rm {} \;
find '$(MEOWPP_DIR)' -regex '^.*\.log$$' -exec rm {} \;
|