# makefile for as0

as0	: as0.o
	g++ -o as0 as0.o
# as0 depends on as0.o
# to make as0 execute the instruction g++ -o as0 as0.o

as0.o	: as0.cpp
	g++ -c as0.cpp
# as0.o depends on as0.cpp
# to make as0.o execute the instruction g++ -c as0.cpp

clean	: 
	rm -f as0.o as0
# to clean up run the command rm as0.o as0
# this will also ensure that everything gets compiled again.
