CC = g++

CompileParms = -c -Wall -std=c++11 -O2

OBJS = standaard.o gebergte.o main.o

Opdr: $(OBJS)
	$(CC) $(OBJS) -o KlimReisPlanner

clean:
	rm -f *.o KlimReisPlanner

standaard.o: standaard.cc standaard.h
	$(CC) $(CompileParms)  standaard.cc

gebergte.o: standaard.h gebergte.cc gebergte.h
	$(CC) $(CompileParms)  gebergte.cc

main.o: standaard.h gebergte.h main.cc
	$(CC) $(CompileParms)  main.cc

