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

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

tools := scan_includes gfx pkmncompress pcm

all: $(tools)
	@:

clean:
	rm -f $(tools)

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