247cb3ff7e
a fully functioning NodeKit. Also reimplement notify() to try an prevent a crash which has been caused by to objects in notify.cpp being initiliazed twice, the second time the auto_ptr holding the dev/null ofstream was being initilized to 0.
54 lines
1.1 KiB
Makefile
54 lines
1.1 KiB
Makefile
TOPDIR = ../../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
AlphaFunc.cpp\
|
|
Billboard.cpp\
|
|
ClipPlane.cpp\
|
|
ColorMask.cpp\
|
|
ColorMatrix.cpp\
|
|
CullFace.cpp\
|
|
Depth.cpp\
|
|
Drawable.cpp\
|
|
EarthSky.cpp\
|
|
Fog.cpp\
|
|
FrontFace.cpp\
|
|
Geode.cpp\
|
|
GeoSet.cpp\
|
|
Group.cpp\
|
|
Image.cpp\
|
|
Impostor.cpp\
|
|
Light.cpp\
|
|
LightModel.cpp\
|
|
LightSource.cpp\
|
|
LineStipple.cpp\
|
|
LineWidth.cpp\
|
|
LOD.cpp\
|
|
Material.cpp\
|
|
Matrix.cpp\
|
|
Node.cpp\
|
|
Object.cpp\
|
|
Point.cpp\
|
|
PolygonMode.cpp\
|
|
PolygonOffset.cpp\
|
|
Projection.cpp\
|
|
ReaderWriterOSG.cpp\
|
|
ShadeModel.cpp\
|
|
StateSet.cpp\
|
|
Stencil.cpp\
|
|
Switch.cpp\
|
|
TexEnv.cpp\
|
|
TexGen.cpp\
|
|
TexMat.cpp\
|
|
Texture.cpp\
|
|
Transform.cpp\
|
|
Transparency.cpp\
|
|
|
|
LIBS += $(OSG_LIBS) $(OTHER_LIBS)
|
|
|
|
TARGET_BASENAME = osg
|
|
include $(TOPDIR)/Make/cygwin_plugin_def
|
|
PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT)
|
|
|
|
include $(TOPDIR)/Make/makerules
|