PublicHeaders = \ SoSubField.h \ SoFields.h \ SoField.h \ SoFieldContainer.h \ SoFieldData.h \ SoMFBitMask.h \ SoMFBool.h \ SoMFColor.h \ SoMFEngine.h \ SoMFEnum.h \ SoMFFloat.h \ SoMFInt32.h \ SoMFLong.h \ SoMFMatrix.h \ SoMFName.h \ SoMFNode.h \ SoMFPath.h \ SoMFPlane.h \ SoMFRotation.h \ SoMFShort.h \ SoMFString.h \ SoMFTime.h \ SoMFUInt32.h \ SoMFULong.h \ SoMFUShort.h \ SoMFVec2f.h \ SoMFVec3f.h \ SoMFVec3d.h \ SoMFVec4f.h \ SoMField.h \ SoSFBitMask.h \ SoSFBool.h \ SoSFBox3s.h \ SoSFBox3f.h \ SoSFColor.h \ SoSFEngine.h \ SoSFEnum.h \ SoSFFloat.h \ SoSFImage.h \ SoSFImage3.h \ SoSFInt32.h \ SoSFLong.h \ SoSFMatrix.h \ SoSFName.h \ SoSFNode.h \ SoSFPath.h \ SoSFPlane.h \ SoSFRotation.h \ SoSFShort.h \ SoSFString.h \ SoSFTime.h \ SoSFTrigger.h \ SoSFUInt32.h \ SoSFULong.h \ SoSFUShort.h \ SoSFVec2s.h \ SoSFVec2f.h \ SoSFVec3s.h \ SoSFVec3f.h \ SoSFVec3d.h \ SoSFVec4f.h \ SoSField.h PrivateHeaders = \ SoSubFieldP.h \ SoGlobalField.h ObsoleteHeaders = ##$ BEGIN TEMPLATE Make-Include-Common(fields, fields) # ************************************************************************** # 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 libfieldsincdir = $(MAC_FRAMEWORK_PREFIX)/$(MAC_FRAMEWORK_NAME).framework/Versions/$(MAC_FRAMEWORK_VERSION)/Headers/fields # 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 libfieldsincdir = $(includedir)/Inventor/fields endif libfieldsinc_HEADERS = $(PublicHeaders) install-libfieldsincHEADERS: $(libfieldsinc_HEADERS) @$(NORMAL_INSTALL) @if test x"$(libfieldsinc_HEADERS)" = x""; then :; else \ echo " $(mkinstalldirs) $(DESTDIR)$(libfieldsincdir)"; \ $(mkinstalldirs) $(DESTDIR)$(libfieldsincdir); \ fi @list='$(libfieldsinc_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)$(libfieldsincdir)/$$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)$(libfieldsincdir)/$$f"; \ if test -x "$$file"; then \ echo " rm -f $$file"; \ rm -f "$$file"; \ fi \ done; \ : ##$ END TEMPLATE Make-Include-Common