MrDraw/checkSSE2/Makefile

7 lines
81 B
Makefile
Raw Normal View History

CC ?= gcc
TARGET ?= checkSSE2
$(TARGET): main.c
$(CC) -o $(TARGET) main.c -Os