pokered/tools/Makefile

20 lines
232 B
Makefile
Raw Permalink 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)
2024-10-08 01:14:37 +00:00
%: %.c common.h
$(CC) $(CFLAGS) -o $@ $<