pokegold-spaceworld/tools/Makefile
Rangi 00b3dea136
Some checks are pending
CI / build (push) Waiting to run
Use the same build tools as pokered
Fixes #122
2026-07-05 16:00:44 -04:00

19 lines
212 B
Makefile

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