diff --git a/.gitignore b/.gitignore index b0d9419..b171294 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ doble_initial +stackTests +bintreeTests *.o *.exe \ No newline at end of file diff --git a/makefile b/makefile index 49f367b..8e81f56 100644 --- a/makefile +++ b/makefile @@ -39,6 +39,8 @@ doble_initial: # -------------------------- stackTests: stack.o test_stack.c $(unityfolder)/unity.c $(CC) $(CFLAGS) -I$(unityfolder) -o stackTests test_stack.c stack.o $(unityfolder)/unity.c ${LDFLAGS} +bintreeTests: bintree.o stack.o bintreeTest.c $(unityfolder)/unity.c + $(CC) $(CFLAGS) -I$(unityfolder) -o bintreeTests bintreeTest.c bintree.o stack.o $(unityfolder)/unity.c ${LDFLAGS} unitTests: echo "needs to be implemented" @@ -47,7 +49,7 @@ unitTests: # -------------------------- clean: ifeq ($(OS),Windows_NT) - del /f *.o doble + del /f *.o doble doble_initial bintreeTests stackTests else - rm -f *.o doble + rm -f *.o doble doble_initial bintreeTests stackTests endif \ No newline at end of file diff --git a/stackTests b/stackTests deleted file mode 100644 index b799152..0000000 Binary files a/stackTests and /dev/null differ