6 lines
81 B
Makefile
6 lines
81 B
Makefile
CC ?= gcc
|
|
TARGET ?= checkSSE2
|
|
|
|
$(TARGET): main.c
|
|
$(CC) -o $(TARGET) main.c -Os
|
|
|