aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile
blob: b623597317fee8b2b83f86230a8060b3ddf11ec8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.PHONY: all clean

CC := gcc
CFLAGS := -O3 -std=c11 -Wall -Wextra -pedantic

tools := \
	gfx \
	make_patch \
	pcm \
	pkmncompress \
	scan_includes

all: $(tools)
	@:

clean:
	$(RM) $(tools)

%: %.c common.h
	$(CC) $(CFLAGS) -o $@ $<