1SubDir HAIKU_TOP src tests kits opengl glsl ; 2 3SetSubDirSupportedPlatformsBeOSCompatible ; 4 5if $(TARGET_PLATFORM) != haiku { 6 # Needed for <GL/glut.h>, not present in R5. 7 # Unfortunately we also get the other headers there, 8 # that we don't really want. 9 UsePublicHeaders opengl ; 10} 11 12StaticLibrary libshaderutil.a : 13 shaderutil.c 14; 15 16SimpleTest brick : 17 brick.c 18 : libshaderutil.a be GL 19; 20