mirror of
https://github.com/pret/pokegold.git
synced 2026-05-19 10:20:46 -05:00
19 lines
223 B
Makefile
19 lines
223 B
Makefile
.PHONY: all clean
|
|
|
|
CC := gcc
|
|
CFLAGS := -O3 -std=c99 -Wall -Wextra -Wno-missing-field-initializers
|
|
|
|
tools := \
|
|
scan_includes \
|
|
gfx
|
|
all: $(tools)
|
|
@:
|
|
|
|
clean:
|
|
rm -f $(tools)
|
|
|
|
gfx: common.h
|
|
|
|
%: %.c
|
|
$(CC) $(CFLAGS) -o $@ $<
|