mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-04-25 07:22:04 -05:00
14 lines
145 B
Makefile
14 lines
145 B
Makefile
.PHONY: all clean
|
|
|
|
CFLAGS := -O3 -std=c99 -Wall -Wextra
|
|
|
|
tools := \
|
|
pkmncompress \
|
|
gfx \
|
|
scan_includes
|
|
|
|
all: $(tools)
|
|
|
|
clean:
|
|
rm -f $(tools)
|