aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: f83110e36b1af4c52c72d7c33b51d43b1879c654 (plain) (blame)
1
2
3
4
5
6
7
8
9
CFLAGS = -march=native -pipe -fomit-frame-pointer -flto -O3

all: test benchmark
test: domain-lookup.c domain-lookup.h test.c
benchmark: domain-lookup.c domain-lookup.h benchmark.c
clean:
	rm -f test benchmark

.PHONY: clean