mirror of
https://github.com/eddyem/eddys_snippets.git
synced 2025-12-06 10:45:12 +03:00
10 lines
111 B
Makefile
10 lines
111 B
Makefile
CC=gcc
|
|
CFLAGS= -march=native -O3
|
|
|
|
all: add dotproduct
|
|
|
|
%: %.c
|
|
@echo -e "\t\tCC $<"
|
|
$(CC) $(CFLAGS) -o $@ $<
|
|
|