1SubDir HAIKU_TOP src tests kits opengl glsl ; 2UseBuildFeatureHeaders mesa ; 3UseBuildFeatureHeaders glu ; 4UseLibraryHeaders glut ; 5 6local shadersources = 7 shaderutil.c 8; 9 10Includes [ FGristFiles $(shadersources) ] 11 : 12 [ BuildFeatureAttribute mesa : headers ] 13 [ BuildFeatureAttribute glu : headers ] 14; 15 16StaticLibrary libshaderutil.a : 17 $(shadersources) 18; 19 20SimpleTest brick : 21 brick.c 22 : 23 libshaderutil.a be libglut.so 24 [ BuildFeatureAttribute mesa : library ] 25 [ BuildFeatureAttribute glu : library ] 26; 27