https://github.com/efficient/rankselect
Raw File
Tip revision: 185b79b0887cba0ae4dae056868763cd176c9efd authored by Dong Zhou on 11 April 2013, 14:46:00 UTC
update license file
Tip revision: 185b79b
Makefile
CC = gcc
CPP = gcc -E
CXX = g++
CXXCPP = g++ -E

# Flags passed to the C++ compiler.
CXXFLAGS += -g -Wall -Wextra
CXXFLAGS += -O9 -mpopcnt

%.o: %.cc
	$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@

.PHONY: all clean

all: bitmap_bench

clean:
	rm -f bitmap_bench *.o

bitmap_bench: bitmap.o bitmap_bench.o
	$(CXX) $(CXXFLAGS) $(CXXFLAGS) $^ -o $@
back to top