summaryrefslogtreecommitdiff
path: root/Makefile
blob: dcca56a7239898cbf67e3f0284f64b53a39e376b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CXX=g++ -std=c++0x -O3 -Wall -Wextra -Werror -lpthread

all: cacount

cacount :: cacount.cpp packed_array.hpp timer.hpp
	$(CXX) -fwhole-program $< -o $@

cacount_%: cacount.cpp packed_array.hpp timer.hpp
	$(CXX) -DBIT_WIDTH=$(shell echo $@ | egrep -o '[^_]*$$') -fwhole-program $< -o $@

clean:
	-rm cacount *~
contact: Jan Huwald // Impressum