kep-hack/tools/Makefile
2022-03-08 21:52:57 -05:00

22 lines
274 B
Makefile

.PHONY: all clean
CC := gcc
CFLAGS := -O3 -std=c11 -Wall -Wextra -pedantic -Wno-missing-field-initializers
tools := \
gfx \
pkmncompress \
scan_includes
all: $(tools)
@:
clean:
$(RM) $(tools)
gfx: common.h
scan_includes: common.h
%: %.c
$(CC) $(CFLAGS) -o $@ $<