registrar: registrar.o Student.o
	g++ registrar.o Student.o -o registrar	

registrar.o: registrar.cpp Student.h
	g++ -c registrar.cpp

Student.o: Student.cpp Student.h
	g++ -c Student.cpp
