1
0

added more code

This commit is contained in:
Andrew W
2022-08-28 16:12:16 -05:00
parent 5a2894ed1b
commit 7dabaef6f6
2345 changed files with 1343530 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# Project06 makefile
# To disable the gcov options use a # to comment out the
# following line and uncomment the line below it
#CC = g++ -fprofile-arcs -ftest-coverage
CC = g++
project05: main.o student.o
$(CC) main.o student.o -o project05
main.o: main.cpp bstree.h
$(CC) -c main.cpp
student.o: student.cpp student.h
$(CC) -c student.cpp
clean:
rm *.o *.gcda *.gcno *.gcov project05