SUBDIRS = C VRMLnodes actions annex bundles caches collision details \ draggers elements engines errors events fields lists lock manips \ misc nodekits nodes projectors sensors system threads PublicHeaders = \ Sb.h \ SbBSPTree.h \ SbBasic.h \ SbBox.h \ SbBox2d.h \ SbBox2f.h \ SbBox2s.h \ SbBox3f.h \ SbBox3s.h \ SbClip.h \ SbColor.h \ SbColor4f.h \ SbCylinder.h \ SbDPLine.h \ SbDPLinear.h \ SbDPMatrix.h \ SbDPPlane.h \ SbDPRotation.h \ SbDPViewVolume.h \ SbDict.h \ SbHeap.h \ SbImage.h \ SbLine.h \ SbLinear.h \ SbMatrix.h \ SbName.h \ SbOctTree.h \ SbPList.h \ SbPlane.h \ SbRotation.h \ SbSphere.h \ SbString.h \ SbTesselator.h \ SbTime.h \ SbVec2d.h \ SbVec2f.h \ SbVec2s.h \ SbVec3d.h \ SbVec3f.h \ SbVec3s.h \ SbVec4d.h \ SbVec4f.h \ SbViewVolume.h \ SbViewportRegion.h \ SbXfBox3f.h \ So.h \ SoDB.h \ SoFullPath.h \ SoInput.h \ SoInteraction.h \ SoLists.h \ SoNodeKitPath.h \ SoOffscreenRenderer.h \ SoOutput.h \ SoPath.h \ SoPickedPoint.h \ SoPrimitiveVertex.h \ SoSceneManager.h \ SoType.h \ oivwin32.h \ non_winsys.h PrivateHeaders = ObsoleteHeaders = ##$ BEGIN TEMPLATE Make-Include-Common(inventor, .) # ************************************************************************** # 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 libinventorincdir = $(MAC_FRAMEWORK_PREFIX)/$(MAC_FRAMEWORK_NAME).framework/Versions/$(MAC_FRAMEWORK_VERSION)/Headers/. # 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 libinventorincdir = $(includedir)/Inventor/. endif libinventorinc_HEADERS = $(PublicHeaders) install-libinventorincHEADERS: $(libinventorinc_HEADERS) @$(NORMAL_INSTALL) @if test x"$(libinventorinc_HEADERS)" = x""; then :; else \ echo " $(mkinstalldirs) $(DESTDIR)$(libinventorincdir)"; \ $(mkinstalldirs) $(DESTDIR)$(libinventorincdir); \ fi @list='$(libinventorinc_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)$(libinventorincdir)/$$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)$(libinventorincdir)/$$f"; \ if test -x "$$file"; then \ echo " rm -f $$file"; \ rm -f "$$file"; \ fi \ done; \ : ##$ END TEMPLATE Make-Include-Common