mirror of
https://github.com/pret/pokeyellow.git
synced 2026-05-08 06:43:11 -05:00
24 lines
269 B
Makefile
24 lines
269 B
Makefile
.PHONY: all clean
|
|
|
|
CC := gcc
|
|
CFLAGS := -O3 -flto -std=c11 -Wall -Wextra -pedantic
|
|
|
|
tools := \
|
|
gfx \
|
|
make_patch \
|
|
pcm \
|
|
pkmncompress \
|
|
scan_includes
|
|
|
|
all: $(tools)
|
|
@:
|
|
|
|
clean:
|
|
$(RM) $(tools)
|
|
|
|
gfx: common.h
|
|
scan_includes: common.h
|
|
|
|
%: %.c
|
|
$(CC) $(CFLAGS) -o $@ $<
|