eddys_snippets/avx/Makefile

10 lines
111 B
Makefile

CC=gcc
CFLAGS= -march=native -O3
all: add dotproduct
%: %.c
@echo -e "\t\tCC $<"
$(CC) $(CFLAGS) -o $@ $<