pokered/tools/Makefile

23 lines
262 B
Makefile
Raw Normal View History

.PHONY: all clean
CC := gcc
CFLAGS := -O3 -flto -std=c11 -Wall -Wextra -pedantic
2022-03-09 02:52:57 +00:00
tools := \
gfx \
make_patch \
2022-03-09 02:52:57 +00:00
pkmncompress \
scan_includes
all: $(tools)
@:
clean:
2022-03-09 02:52:57 +00:00
$(RM) $(tools)
gfx: common.h
2022-03-09 02:52:57 +00:00
scan_includes: common.h
%: %.c
$(CC) $(CFLAGS) -o $@ $<