2001-01-11 00:32:10 +08:00
|
|
|
#!smake
|
|
|
|
include ../../Make/makedefs
|
|
|
|
|
|
|
|
C++FILES = \
|
2001-09-22 10:42:08 +08:00
|
|
|
AppVisitor.cpp\
|
2001-09-20 05:08:56 +08:00
|
|
|
CameraManipulator.cpp\
|
|
|
|
CullVisitor.cpp\
|
|
|
|
CullViewState.cpp\
|
|
|
|
DisplayListVisitor.cpp\
|
2001-12-22 06:48:19 +08:00
|
|
|
DisplayRequirementsVisitor.cpp\
|
2001-09-20 05:08:56 +08:00
|
|
|
DepthSortedBin.cpp\
|
|
|
|
DriveManipulator.cpp\
|
|
|
|
FlightManipulator.cpp\
|
2001-01-11 00:32:10 +08:00
|
|
|
IntersectVisitor.cpp\
|
2001-09-20 05:08:56 +08:00
|
|
|
InsertImpostorsVisitor.cpp\
|
|
|
|
NvTriStripObjects.cpp\
|
2001-10-19 22:22:02 +08:00
|
|
|
Optimizer.cpp\
|
2001-09-20 05:08:56 +08:00
|
|
|
RenderBin.cpp\
|
|
|
|
RenderGraph.cpp\
|
|
|
|
RenderLeaf.cpp\
|
|
|
|
RenderStage.cpp\
|
|
|
|
RenderStageLighting.cpp\
|
|
|
|
RenderToTextureStage.cpp\
|
|
|
|
SceneView.cpp\
|
|
|
|
SceneViewManipulator.cpp\
|
|
|
|
SmoothingVisitor.cpp\
|
|
|
|
StateSetManipulator.cpp\
|
|
|
|
Tesselator.cpp\
|
2001-01-11 00:32:10 +08:00
|
|
|
TrackballManipulator.cpp\
|
2001-11-14 22:09:07 +08:00
|
|
|
TransformCallback.cpp\
|
2001-09-20 05:08:56 +08:00
|
|
|
TriStripVisitor.cpp\
|
2001-01-11 00:32:10 +08:00
|
|
|
Version.cpp\
|
|
|
|
|
|
|
|
|
|
|
|
TARGET_BASENAME = osgUtil
|
|
|
|
|
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
LIBS = -L../../lib -losg -lGLU -lGL -lm
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
LIB = ../../lib/lib$(TARGET_BASENAME).so
|
|
|
|
#LIB = ../../lib/lib$(TARGET_BASENAME).a
|
|
|
|
|
|
|
|
TARGET_LIB_FILES = lib$(TARGET_BASENAME).so
|
|
|
|
TARGET_INCLUDE_FILES = \
|
2001-09-22 10:42:08 +08:00
|
|
|
osgUtil/AppVisitor\
|
2001-01-11 00:32:10 +08:00
|
|
|
osgUtil/CameraManipulator\
|
2001-09-20 05:08:56 +08:00
|
|
|
osgUtil/CullVisitor\
|
|
|
|
osgUtil/CullViewState\
|
|
|
|
osgUtil/DepthSortedBin\
|
2001-01-11 00:32:10 +08:00
|
|
|
osgUtil/DisplayListVisitor\
|
2001-12-22 06:48:19 +08:00
|
|
|
osgUtil/DisplayRequirementsVisitor\
|
2001-01-11 00:32:10 +08:00
|
|
|
osgUtil/DriveManipulator\
|
|
|
|
osgUtil/Export\
|
2001-09-20 05:08:56 +08:00
|
|
|
osgUtil/FlightManipulator\
|
2001-01-11 00:32:10 +08:00
|
|
|
osgUtil/GUIActionAdapter\
|
|
|
|
osgUtil/GUIEventAdapter\
|
2001-09-20 05:08:56 +08:00
|
|
|
osgUtil/GUIEventHandler\
|
2001-01-11 00:32:10 +08:00
|
|
|
osgUtil/IntersectVisitor\
|
2001-09-20 05:08:56 +08:00
|
|
|
osgUtil/InsertImpostorsVisitor\
|
2001-10-19 22:22:02 +08:00
|
|
|
osgUtil/Optimizer\
|
2001-09-20 05:08:56 +08:00
|
|
|
osgUtil/RenderBin\
|
|
|
|
osgUtil/RenderGraph\
|
|
|
|
osgUtil/RenderLeaf\
|
|
|
|
osgUtil/RenderStage\
|
|
|
|
osgUtil/RenderStageLighting\
|
|
|
|
osgUtil/RenderToTextureStage\
|
2001-01-11 00:32:10 +08:00
|
|
|
osgUtil/SceneView\
|
2001-09-20 05:08:56 +08:00
|
|
|
osgUtil/SceneViewManipulator\
|
|
|
|
osgUtil/SmoothingVisitor\
|
|
|
|
osgUtil/StateSetManipulator\
|
|
|
|
osgUtil/Tesselator\
|
2001-01-11 00:32:10 +08:00
|
|
|
osgUtil/TrackballManipulator\
|
2001-11-14 22:09:07 +08:00
|
|
|
osgUtil/TransformCallback\
|
2001-09-20 05:08:56 +08:00
|
|
|
osgUtil/TriStripVisitor\
|
2001-01-11 00:32:10 +08:00
|
|
|
osgUtil/Version\
|
|
|
|
|
|
|
|
|
|
|
|
C++FLAGS += -I ../../include
|
|
|
|
|
|
|
|
include ../../Make/makerules
|
|
|
|
|