
Compiler = g++
CompileOptions = -g -c -fguiding-decls -DGNU
Includes =
Libraries =
LinkOptions = -lm -o 

ttest: main.o 
	$(Compiler) main.o $(Libraries) $(LinkOptions) ttest

main.o: main.cpp list.h listiter.h stack.h
	$(Compiler) $(Includes) $(CompileOptions) main.cpp
