all	: brno alt

brno	: brno.cpp
	g++ -o brno brno.cpp

alt	: alt.cpp
	g++ -o alt alt.cpp

clean	:
	rm -f *.o

distclean	: clean
	rm -f brno alt
	
