summaryrefslogtreecommitdiff
path: root/tools/Makefile
blob: 0a1ffd291562b7b1f9cd0a527b8c10ae0f0fc9a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.PHONY: all clean

CFLAGS := -O3 -std=c99 -Wall -Wextra

tools := \
	pkmncompress \
	gfx \
	scan_includes

all: $(tools)

clean:
	rm -f $(tools)