mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
28 lines
499 B
Makefile
28 lines
499 B
Makefile
.PHONY: all clean
|
|
|
|
CC := gcc
|
|
CFLAGS := -O3 -std=c17 -Wall -Wextra -pedantic -Wno-missing-field-initializers
|
|
|
|
tools := \
|
|
lzcomp \
|
|
png_dimensions \
|
|
scan_includes \
|
|
pokemon_animation \
|
|
pokemon_animation_graphics \
|
|
gfx \
|
|
stadium
|
|
all: $(tools)
|
|
@:
|
|
|
|
clean:
|
|
rm -f $(tools)
|
|
|
|
gfx: common.h
|
|
|
|
lzcomp: CFLAGS = -O3 -flto -std=c17 -Wall -Wextra -pedantic -Wno-strict-overflow -Wno-sign-compare
|
|
lzcomp: $(wildcard lz/*.c) $(wildcard lz/*.h)
|
|
$(CC) $(CFLAGS) -o $@ lz/*.c
|
|
|
|
%: %.c
|
|
$(CC) $(CFLAGS) -o $@ $<
|