mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-04 14:23:04 +02:00
14 lines
192 B
Makefile
14 lines
192 B
Makefile
CC = gcc
|
|
CFLAGS = -O3 -Wall -Wextra -march=native
|
|
TARGET = vocabulary_curve
|
|
|
|
all: $(TARGET)
|
|
|
|
$(TARGET): main.c
|
|
$(CC) $(CFLAGS) -o $(TARGET) main.c
|
|
|
|
clean:
|
|
rm -f $(TARGET)
|
|
|
|
.PHONY: all clean
|