]> wirehaze git hosting - lifeboot.git/blob - Makefile

wirehaze git hosting

formatting
[lifeboot.git] / Makefile
1 SRC_DIR := .
2 PROGRAMS := prototype
3 CC := gcc
4 CFLAGS := -Wall -Wextra -Werror -I.
5
6 build: $(PROGRAMS)
7
8 format:
9 find $(SRC_DIR) -iname '*.[hc]' | xargs clang-format -i --style=GNU
10
11 clean:
12 rm -rf $(PROGRAMS) *.o
13
14 .PHONY: build format clean