$ sudo apt-get install freeglut3-dev libglew1.5-dev
#テスト
$ vim test.c
/*test.c*/
#include <GL/glut.h>
int main(int argc,char *argv[])
{
/*初期化*/
glutInit(&argc,argv);
/*ウィンドウ作成*/
glutCreateWindow(argv[0]);
/*メインループ*/
glutMainLoop();
return 0;
}
#コンパイル
$ gcc -lglut -o test test.c