Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/RenderSystems/GL/src/Makefile.am @ 3

Last change on this file since 3 was 3, checked in by anonymous, 17 years ago

=update

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