On Wed, 4 Jun 2003, stm23 wrote: > gcc lab.c -lGL -lGLU -lglut -lm -o lab; lab > > i get output: > > bash: lab: command not found
Try: gcc lab.c -lGL -lGLU -lglut -lm -o lab; ./lab If that works then you'll need to add the directory . (the current directory) into your path. Tim Wright Assistant Lecturer Department of Computer Science University of Canterbury "Language, like terrorism, targets civilians and generates fear to effect political change." -- "Collateral Language" John Collins and Ross Glover ed.
