pokered/tools/Makefile
2026-01-07 22:09:42 -05:00

20 lines
226 B
Makefile

.PHONY: all clean
CC := gcc
CFLAGS := -O3 -std=c11 -Wall -Wextra -pedantic
tools := \
gfx \
make_patch \
pkmncompress \
scan_includes
all: $(tools)
@:
clean:
$(RM) $(tools)
%: %.c common.h
$(CC) $(CFLAGS) -o $@ $<