traza/Makefile

6 lines
111 B
Makefile

CFLAGS = -Wall -Wextra -std=c99 -pedantic -O2
LIBS = -lSDL2 -lm
out: main.c
$(CC) $(CFLAGS) $(LIBS) $< -o $@