Files
CS-Classes/CS302/test2/makefile
2025-06-17 14:42:22 -07:00

8 lines
142 B
Makefile

ArrayBagExecutable: test.o
g++ test.o -o ArrayBagExecutable
test.o: test.cpp ArrayBag.h
g++ -c test.cpp
clean:
rm *.o ArrayBagExecutable