PublicHeaders = \ SoSubEngine.h \ SoSubNodeEngine.h \ SoEngines.h \ SoBoolOperation.h \ SoCalculator.h \ SoCompose.h \ SoComposeMatrix.h \ SoComposeRotation.h \ SoComposeRotationFromTo.h \ SoComposeVec2f.h \ SoComposeVec3f.h \ SoComposeVec4f.h \ SoComputeBoundingBox.h \ SoConcatenate.h \ SoCounter.h \ SoDecomposeMatrix.h \ SoDecomposeRotation.h \ SoDecomposeVec2f.h \ SoDecomposeVec3f.h \ SoDecomposeVec4f.h \ SoElapsedTime.h \ SoEngine.h \ SoEngineOutput.h \ SoFieldConverter.h \ SoGate.h \ SoInterpolate.h \ SoInterpolateFloat.h \ SoInterpolateRotation.h \ SoInterpolateVec2f.h \ SoInterpolateVec3f.h \ SoInterpolateVec4f.h \ SoNodeEngine.h \ SoOnOff.h \ SoOneShot.h \ SoOutputData.h \ SoSelectOne.h \ SoTimeCounter.h \ SoTransformVec3f.h \ SoTriggerAny.h PrivateHeaders = \ SoSubEngineP.h \ SoConvertAll.h \ SoSubNodeEngineP.h ObsoleteHeaders = ##$ BEGIN TEMPLATE Make-Include-Common(engines, engines) # ************************************************************************** # 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 libenginesincdir = $(MAC_FRAMEWORK_PREFIX)/$(MAC_FRAMEWORK_NAME).framework/Versions/$(MAC_FRAMEWORK_VERSION)/Headers/engines # 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 libenginesincdir = $(includedir)/Inventor/engines endif libenginesinc_HEADERS = $(PublicHeaders) install-libenginesincHEADERS: $(libenginesinc_HEADERS) @$(NORMAL_INSTALL) @if test x"$(libenginesinc_HEADERS)" = x""; then :; else \ echo " $(mkinstalldirs) $(DESTDIR)$(libenginesincdir)"; \ $(mkinstalldirs) $(DESTDIR)$(libenginesincdir); \ fi @list='$(libenginesinc_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)$(libenginesincdir)/$$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)$(libenginesincdir)/$$f"; \ if test -x "$$file"; then \ echo " rm -f $$file"; \ rm -f "$$file"; \ fi \ done; \ : ##$ END TEMPLATE Make-Include-Common