Makefile 187 Bytes
Newer Older
lwc-tester committed
1 2 3 4 5 6 7 8 9 10 11 12

CC=gcc -Wall -O2 -fomit-frame-pointer -funroll-all-loops -march=native -mtune=native
all: spix_1

spix_1: spix

spix: speed.c spix.c
	$(CC) -o $@ $^

.PHONY: clean
clean:
	rm -fr spix