mirror of
https://github.com/pret/pokepuzzle.git
synced 2026-08-22 02:44:38 -05:00
16 lines
201 B
Makefile
16 lines
201 B
Makefile
.PHONY: all clean
|
|
|
|
CC := gcc
|
|
CFLAGS := -O3 -std=c17 -Wall -Wextra -pedantic
|
|
|
|
tools := gfx make_patch scan_includes
|
|
|
|
all: $(tools)
|
|
@:
|
|
|
|
clean:
|
|
rm -f $(tools)
|
|
|
|
%: %.c common.h
|
|
$(CC) $(CFLAGS) -o $@ $<
|