mirror of
https://github.com/cellos51/balatro-gba.git
synced 2026-09-09 09:26:15 -05:00
17 lines
349 B
Makefile
17 lines
349 B
Makefile
|
|
CC := gcc
|
|
CFLAGS := -I../../include -I. -I../../include/data_structures \
|
|
-g -O3 -std=gnu23 -Wall -Werror
|
|
SRC := bitset_test.c \
|
|
../../source/data_structures/bitset.c
|
|
OUT := build/bitset_test
|
|
|
|
$(OUT): $(SRC) | build
|
|
$(CC) $(CFLAGS) -o $@ $^
|
|
|
|
build:
|
|
mkdir -p build
|
|
|
|
clean:
|
|
rm -f $(OUT)
|