Makefile 185 Bytes
Newer Older
lwc-tester committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
CC=gcc -g -Wall -O2 -fomit-frame-pointer -march=native -mtune=native
LIB=-lm


all: sycon_1

sycon_1: sycon

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

.PHONY: clean

clean:
	rm -fr sycon