mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-04-07 01:45:37 -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)
|