Files
poketcg/tools/Makefile
Rangi 7a75fe810e
Some checks failed
CI / build (push) Has been cancelled
Build the 3DS VC patch file (#190)
2026-08-13 17:55:52 -04:00

16 lines
218 B
Makefile

.PHONY: all clean
CC := gcc
CFLAGS := -O3 -std=c17 -Wall -Wextra -pedantic
tools := bgmap compressor gfx make_patch scan_includes
all: $(tools)
@:
clean:
rm -f $(tools)
%: %.c common.h
$(CC) $(CFLAGS) -o $@ $<