Files
balatro-gba/tests/pool/Makefile
2026-05-23 12:27:51 -07:00

17 lines
375 B
Makefile

CC := gcc
CFLAGS := -I../../include -I../../include/data_structures -I. \
-g -O3 -std=gnu23 -Wall -Werror -DPOOLS_TEST_ENV=yes
SRC := pool_test.c ../../source/data_structures/pool.c ../../source/data_structures/bitset.c
OUT := build/pool_test
$(OUT): $(SRC) | build
$(CC) $(CFLAGS) -o $@ $^
build:
mkdir -p build
clean:
rm -f $(OUT)