I am quite new to latex and don't quite get it how to compile different versions of my presentation. If this is important: I am using pdflatex and beamer.
There are three documentclasses I am currently using:
\documentclass{beamer}\documentclass[notes=only]{beamer}\documentclass[handout]{beamer}
I am currently using a makefile to compile the whole stuff which basicly invokes pdflatex like this: pdflatex '\documentclass[notes=only]{beamer} \input{$(INPUT_FILE)}'
Which of course means my .tex file is missing the documentclass and can not easily be compiled without knowledge of my Makefile. And of course thats not quite desirable ...
But how would I do better?