mirror of
https://github.com/pret/pokered.git
synced 2026-05-07 05:42:37 -05:00
23 lines
288 B
Makefile
23 lines
288 B
Makefile
.PHONY: all clean format
|
|
|
|
CC := gcc
|
|
CFLAGS := -O3 -std=c11 -Wall -Wextra -pedantic
|
|
|
|
tools := \
|
|
gfx \
|
|
make_patch \
|
|
pkmncompress \
|
|
scan_includes
|
|
|
|
all: $(tools)
|
|
@:
|
|
|
|
clean:
|
|
$(RM) $(tools)
|
|
|
|
format:
|
|
clang-format -i $$(git ls-files '*.h' '*.c')
|
|
|
|
%: %.c common.h
|
|
$(CC) $(CFLAGS) -o $@ $<
|