dither/Makefile

7 lines
134 B
Makefile

CC = clang
CFLAGS = -Wall -Wextra -Werror -std=c99 -pedantic-errors -g
LIBS = -lm
dither: dither.c
$(CC) $(CFLAGS) $(LIBS) $< -o $@