Makefile 193 Bytes
Newer Older
lwc-tester committed
1 2 3 4 5 6 7 8 9 10 11
CC=gcc -O2 -fomit-frame-pointer -funroll-all-loops -march=native -mtune=native 
CLIB=-lm
all: sycon_1
sycon_1: sycon
sycon: speed.c sycon.c
	$(CC) -o $@ $^

.PHONY: clean

clean:
	rm -fr sycon