#This Makefile compiles
#
#-----------------------------------------
SegGen:	SegGen.o
	g++ -o SegGen SegGen.o 
SegGen.o:  SegGen.cpp
	g++ -c SegGen.cpp

#-----------------------------------------
clean:
	rm SegGen.o SegGen
#-----------------------------------------
