## Process this file with automake to generate Makefile.in. ## 19990904 mortene. ## Sources and installation headers. PublicHeaders = \ SoVRML.h \ SoVRMLAnchor.h \ SoVRMLAppearance.h \ SoVRMLAudioClip.h \ SoVRMLBackground.h \ SoVRMLBillboard.h \ SoVRMLBox.h \ SoVRMLCollision.h \ SoVRMLColor.h \ SoVRMLColorInterpolator.h \ SoVRMLCone.h \ SoVRMLCoordinate.h \ SoVRMLCoordinateInterpolator.h \ SoVRMLCylinder.h \ SoVRMLCylinderSensor.h \ SoVRMLDirectionalLight.h \ SoVRMLDragSensor.h \ SoVRMLElevationGrid.h \ SoVRMLExtrusion.h \ SoVRMLFog.h \ SoVRMLFontStyle.h \ SoVRMLGeometry.h \ SoVRMLGroup.h \ SoVRMLImageTexture.h \ SoVRMLIndexedFaceSet.h \ SoVRMLIndexedLine.h \ SoVRMLIndexedLineSet.h \ SoVRMLIndexedShape.h \ SoVRMLInline.h \ SoVRMLInterpolator.h \ SoVRMLLOD.h \ SoVRMLLight.h \ SoVRMLMacros.h \ SoVRMLMaterial.h \ SoVRMLMovieTexture.h \ SoVRMLNavigationInfo.h \ SoVRMLNodes.h \ SoVRMLNormal.h \ SoVRMLNormalInterpolator.h \ SoVRMLOrientationInterpolator.h \ SoVRMLParent.h \ SoVRMLPixelTexture.h \ SoVRMLPlaneSensor.h \ SoVRMLPointLight.h \ SoVRMLPointSet.h \ SoVRMLPositionInterpolator.h \ SoVRMLProximitySensor.h \ SoVRMLScalarInterpolator.h \ SoVRMLScript.h \ SoVRMLSensor.h \ SoVRMLShape.h \ SoVRMLSound.h \ SoVRMLSphere.h \ SoVRMLSphereSensor.h \ SoVRMLSpotLight.h \ SoVRMLSubInterpolator.h \ SoVRMLSwitch.h \ SoVRMLText.h \ SoVRMLTexture.h \ SoVRMLTextureCoordinate.h \ SoVRMLTextureTransform.h \ SoVRMLTimeSensor.h \ SoVRMLTouchSensor.h \ SoVRMLTransform.h \ SoVRMLVertexLine.h \ SoVRMLVertexPoint.h \ SoVRMLVertexShape.h \ SoVRMLViewpoint.h \ SoVRMLVisibilitySensor.h \ SoVRMLWorldInfo.h PrivateHeaders = \ SoVRMLSubInterpolatorP.h ObsoleteHeaders = ##$ BEGIN TEMPLATE Make-Include-Common(VRMLnodes, VRMLnodes) # ************************************************************************** # 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 libVRMLnodesincdir = $(MAC_FRAMEWORK_PREFIX)/$(MAC_FRAMEWORK_NAME).framework/Versions/$(MAC_FRAMEWORK_VERSION)/Headers/VRMLnodes # 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 libVRMLnodesincdir = $(includedir)/Inventor/VRMLnodes endif libVRMLnodesinc_HEADERS = $(PublicHeaders) install-libVRMLnodesincHEADERS: $(libVRMLnodesinc_HEADERS) @$(NORMAL_INSTALL) @if test x"$(libVRMLnodesinc_HEADERS)" = x""; then :; else \ echo " $(mkinstalldirs) $(DESTDIR)$(libVRMLnodesincdir)"; \ $(mkinstalldirs) $(DESTDIR)$(libVRMLnodesincdir); \ fi @list='$(libVRMLnodesinc_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)$(libVRMLnodesincdir)/$$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)$(libVRMLnodesincdir)/$$f"; \ if test -x "$$file"; then \ echo " rm -f $$file"; \ rm -f "$$file"; \ fi \ done; \ : ##$ END TEMPLATE Make-Include-Common