summaryrefslogtreecommitdiff
path: root/tools/Makefile
blob: c591d9c4aa1b955a5b8420c2a640e4cf053f4f0a (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 \
	make_shim

all: $(tools)

clean:
	rm -f $(tools)