added bintree.o to makefile

This commit is contained in:
Jonas Hofmann 2025-12-08 20:48:02 +01:00
parent c49a8d687c
commit 574ed71bae

View File

@ -38,6 +38,9 @@ $(program_obj_filesobj_files): %.o: %.c
# unitTests:
# echo "needs to be implemented"
bintree: bintree.c
$(CC) $(FLAGS) -c bintree bintree.c
bintreeTests: bintree.o bintreeTests.c $(unityfolder)/unity.c
$(CC) $(FLAGS) -o runbintreeTests bintreeTests.c bintree.o $(unityfolder)/unity.c