1 | INCLUDES = $(STLPORT_CFLAGS) -I$(top_srcdir)/RenderSystems/GL/include \ |
---|
2 | -I$(top_srcdir)/OgreMain/include $(GLSUPPORT_CFLAGS) \ |
---|
3 | -I$(top_srcdir)/PlatformManagers/$(OGRE_PLATFORM)/include \ |
---|
4 | -I$(top_srcdir)/RenderSystems/GL/src/$(OGRE_GLSUPPORT) \ |
---|
5 | -I$(top_srcdir)/RenderSystems/GL/src/nvparse \ |
---|
6 | -I$(top_srcdir)/RenderSystems/GL/src/atifs/include \ |
---|
7 | -I$(top_srcdir)/RenderSystems/GL/src/GLSL/include |
---|
8 | |
---|
9 | DIST_SUBDIRS = gtk SDL win32 GLX |
---|
10 | SUBDIRS = $(OGRE_GLSUPPORT) nvparse atifs GLSL |
---|
11 | |
---|
12 | pkglib_LTLIBRARIES = RenderSystem_GL.la |
---|
13 | |
---|
14 | RenderSystem_GL_la_SOURCES = OgreGLEngineDll.cpp \ |
---|
15 | OgreGLGpuProgram.cpp \ |
---|
16 | OgreGLGpuNvparseProgram.cpp \ |
---|
17 | OgreGLGpuProgramManager.cpp \ |
---|
18 | OgreGLRenderSystem.cpp \ |
---|
19 | OgreGLSupport.cpp \ |
---|
20 | OgreGLTexture.cpp \ |
---|
21 | OgreGLTextureManager.cpp \ |
---|
22 | OgreGLHardwareBufferManager.cpp \ |
---|
23 | OgreGLHardwareIndexBuffer.cpp \ |
---|
24 | OgreGLHardwareOcclusionQuery.cpp \ |
---|
25 | OgreGLHardwareVertexBuffer.cpp \ |
---|
26 | OgreGLHardwarePixelBuffer.cpp \ |
---|
27 | OgreGLDefaultHardwareBufferManager.cpp \ |
---|
28 | OgreGLContext.cpp \ |
---|
29 | OgreGLPixelFormat.cpp \ |
---|
30 | OgreGLRenderTexture.cpp \ |
---|
31 | OgreGLFBORenderTexture.cpp \ |
---|
32 | OgreGLPBRenderTexture.cpp \ |
---|
33 | OgreGLFBOMultiRenderTarget.cpp \ |
---|
34 | OgreGLFrameBufferObject.cpp \ |
---|
35 | glew.cpp |
---|
36 | |
---|
37 | RenderSystem_GL_la_LDFLAGS = -module $(PLUGIN_FLAGS) -L$(top_builddir)/OgreMain/src -Wl,-z,defs |
---|
38 | RenderSystem_GL_la_LIBADD = \ |
---|
39 | $(top_builddir)/RenderSystems/GL/src/$(OGRE_GLSUPPORT)/libsupport.la \ |
---|
40 | $(top_builddir)/RenderSystems/GL/src/GLSL/src/libGLSL.la \ |
---|
41 | $(top_builddir)/RenderSystems/GL/src/nvparse/libnvparse.la \ |
---|
42 | $(top_builddir)/RenderSystems/GL/src/atifs/src/libatifs.la \ |
---|
43 | $(GL_LIBS) $(GLSUPPORT_LIBS) -lOgreMain |
---|
44 | |
---|