added stack to makefile

This commit is contained in:
Jonas Hofmann 2025-12-09 22:27:14 +01:00
parent e4a8afabdd
commit 2368c9f3b9

View File

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