aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
blob: 4a18c7139a767a06dc5a925061dcfacfafd888b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: clean

CXX ?= g++
CXXFLAGS ?= -g -O2

tester: tester.cc
	$(CXX) $(CXXFLAGS) -o tester tester.cc

all: tester

check: tester
	./tester	

clean:
	rm -rf tester