all: notenv7

%.o : %.cpp
	g++ -c $< -o $@

notenv7 : main.o notenliste.o
	g++ main.o notenliste.o -o $@

clean:
	rm -f *.o
