codex/Makefile

6 lines
112 B
Makefile
Raw Normal View History

2021-07-30 14:55:37 +00:00
CC = clang
CFLAGS = -Wall -Wextra -Werror -std=c99 -pedantic-errors
2021-07-30 14:55:37 +00:00
format: format.c
2021-07-30 14:55:37 +00:00
$(CC) $(CFLAGS) $< -o $@