Files
balatro-gba-chinese-jocker-…/tests/pool/Makefile
T
2025-10-17 18:05:36 -07:00

18 lines
329 B
Makefile

POOLS_DEF_FILE := \"test_pools.def\"
CC := gcc
CFLAGS := -I../../include -I. \
-g -O3 -Wall -Werror -DPOOLS_DEF_FILE=$(POOLS_DEF_FILE)
SRC := pool_test.c ../../source/pool.c
OUT := build/pool_test
$(OUT): $(SRC) | build
$(CC) $(CFLAGS) -o $@ $^
build:
mkdir -p build
clean:
rm -f $(OUT)