e0cffab768
* Introduce indexed list implementation * Fix CI tests for pool * Take bitset out of pool * Replace joker bitset interactions with wrappers * Add bitset tests * Add test to gitignore --------- Co-authored-by: rfehr-idexx <ric-fehr@idexx.com>
17 lines
300 B
Makefile
17 lines
300 B
Makefile
|
|
CC := gcc
|
|
CFLAGS := -I../../include -I. \
|
|
-g -O3 -Wall -Werror -DPOOLS_TEST_ENV=yes
|
|
|
|
SRC := pool_test.c ../../source/pool.c ../../source/bitset.c
|
|
OUT := build/pool_test
|
|
|
|
$(OUT): $(SRC) | build
|
|
$(CC) $(CFLAGS) -o $@ $^
|
|
|
|
build:
|
|
mkdir -p build
|
|
|
|
clean:
|
|
rm -f $(OUT)
|