PublicHeaders = \ SoAnnotation.h \ SoAntiSquish.h \ SoArray.h \ SoAsciiText.h \ SoBaseColor.h \ SoBlinker.h \ SoBumpMap.h \ SoBumpMapCoordinate.h \ SoBumpMapTransform.h \ SoCallback.h \ SoCamera.h \ SoClipPlane.h \ SoColorIndex.h \ SoComplexity.h \ SoCone.h \ SoCoordinate3.h \ SoCoordinate4.h \ SoCube.h \ SoCylinder.h \ SoDirectionalLight.h \ SoDrawStyle.h \ SoEnvironment.h \ SoEventCallback.h \ SoExtSelection.h \ SoFaceSet.h \ SoFaceSet.h \ SoFile.h \ SoFont.h \ SoFontStyle.h \ SoGroup.h \ SoImage.h \ SoIndexedFaceSet.h \ SoIndexedLineSet.h \ SoIndexedNurbsCurve.h \ SoIndexedNurbsSurface.h \ SoIndexedShape.h \ SoIndexedTriangleStripSet.h \ SoInfo.h \ SoLOD.h \ SoLabel.h \ SoLevelOfDetail.h \ SoLight.h \ SoLightModel.h \ SoLineSet.h \ SoLineSet.h \ SoLinearProfile.h \ SoListener.h \ SoLocateHighlight.h \ SoMarkerSet.h \ SoMarkerSet.h \ SoMaterial.h \ SoMaterialBinding.h \ SoMatrixTransform.h \ SoMultipleCopy.h \ SoNode.h \ SoNodes.h \ SoNonIndexedShape.h \ SoNormal.h \ SoNormalBinding.h \ SoNurbsCurve.h \ SoNurbsProfile.h \ SoNurbsSurface.h \ SoOrthographicCamera.h \ SoPackedColor.h \ SoPathSwitch.h \ SoPendulum.h \ SoPerspectiveCamera.h \ SoPickStyle.h \ SoPointLight.h \ SoPointSet.h \ SoPolygonOffset.h \ SoProfile.h \ SoProfileCoordinate2.h \ SoProfileCoordinate3.h \ SoQuadMesh.h \ SoResetTransform.h \ SoRotation.h \ SoRotationXYZ.h \ SoRotor.h \ SoScale.h \ SoSceneTexture2.h \ SoSelection.h \ SoSeparator.h \ SoShape.h \ SoShapeHints.h \ SoShuttle.h \ SoSphere.h \ SoSpotLight.h \ SoSubNode.h \ SoSurroundScale.h \ SoSwitch.h \ SoText2.h \ SoText3.h \ SoTexture2.h \ SoTexture2Transform.h \ SoTexture3.h \ SoTexture3Transform.h \ SoTextureCombine.h \ SoTextureCoordinate2.h \ SoTextureCoordinate3.h \ SoTextureCoordinateBinding.h \ SoTextureCoordinateCube.h \ SoTextureCoordinateCylinder.h \ SoTextureCoordinateDefault.h \ SoTextureCoordinateEnvironment.h \ SoTextureCoordinateFunction.h \ SoTextureCoordinatePlane.h \ SoTextureCoordinateSphere.h \ SoTextureScalePolicy.h \ SoTextureUnit.h \ SoTransform.h \ SoTransformSeparator.h \ SoTransformation.h \ SoTranslation.h \ SoTransparencyType.h \ SoTriangleStripSet.h \ SoUnits.h \ SoVertexProperty.h \ SoVertexShape.h \ SoWWWAnchor.h \ SoWWWInline.h PrivateHeaders = \ SoSubNodeP.h \ SoUnknownNode.h ObsoleteHeaders = ##$ BEGIN TEMPLATE Make-Include-Common(nodes, nodes) # ************************************************************************** # This template depends on the following variables having been set up before # its invokation. # # PublicHeaders - header files that should be installed # PrivateHeaders - source files that should be distributed, but not # installed - including source-included source files. # ObsoletedHeaders - header files that should be removed upon installation # Everything below is autogenerated from a macro, so don't modify # within the Makefile.am itself. 19991201 mortene. EXTRA_DIST = $(PrivateHeaders) if MAC_FRAMEWORK libnodesincdir = $(MAC_FRAMEWORK_PREFIX)/$(MAC_FRAMEWORK_NAME).framework/Versions/$(MAC_FRAMEWORK_VERSION)/Headers/nodes # hack to change libdir value when installing Mac OS X compiler framework lib@nop@dir = $(MAC_FRAMEWORK_PREFIX)/$(MAC_FRAMEWORK_NAME).framework/Versions/$(MAC_FRAMEWORK_VERSION)/Libraries else libnodesincdir = $(includedir)/Inventor/nodes endif libnodesinc_HEADERS = $(PublicHeaders) install-libnodesincHEADERS: $(libnodesinc_HEADERS) @$(NORMAL_INSTALL) @if test x"$(libnodesinc_HEADERS)" = x""; then :; else \ echo " $(mkinstalldirs) $(DESTDIR)$(libnodesincdir)"; \ $(mkinstalldirs) $(DESTDIR)$(libnodesincdir); \ fi @list='$(libnodesinc_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f="`echo $$p | sed -e 's|^.*/||'`"; \ src="$$d$$p"; dst="$(DESTDIR)$(libnodesincdir)/$$f"; \ if cmp -s "$$src" "$$dst"; then :; else \ echo " $(INSTALL_HEADER) $$src $$dst"; \ $(INSTALL_HEADER) "$$src" "$$dst" || exit 1; \ fi \ done @list='$(ObsoletedHeaders)'; for f in $$list; do \ file="$(DESTDIR)$(libnodesincdir)/$$f"; \ if test -x "$$file"; then \ echo " rm -f $$file"; \ rm -f "$$file"; \ fi \ done; \ : ##$ END TEMPLATE Make-Include-Common