8 lines
142 B
Makefile
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
|