mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-03-28 21:15:24 -05:00
13 lines
128 B
Makefile
13 lines
128 B
Makefile
.PHONY: all clean
|
|
|
|
CFLAGS := -O3 -std=c99 -Wall -Wextra
|
|
|
|
tools := \
|
|
pkmncompress \
|
|
gfx
|
|
|
|
all: $(tools)
|
|
|
|
clean:
|
|
rm -f $(tools)
|