## Process this file with automake to generate Makefile.in. ## 19990904 mortene. PublicHeaders = \ SoSubAction.h \ SoActions.h \ SoAction.h \ SoBoxHighlightRenderAction.h \ SoCallbackAction.h \ SoGLRenderAction.h \ SoGetBoundingBoxAction.h \ SoGetMatrixAction.h \ SoGetPrimitiveCountAction.h \ SoHandleEventAction.h \ SoLineHighlightRenderAction.h \ SoPickAction.h \ SoRayPickAction.h \ SoReorganizeAction.h \ SoSearchAction.h \ SoSimplifyAction.h \ SoToVRMLAction.h \ SoToVRML2Action.h \ SoWriteAction.h \ SoAudioRenderAction.h PrivateHeaders = \ SoSubActionP.h ObsoleteHeaders = ##$ BEGIN TEMPLATE Make-Include-Common(actions, actions) # ************************************************************************** # 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 libactionsincdir = $(MAC_FRAMEWORK_PREFIX)/$(MAC_FRAMEWORK_NAME).framework/Versions/$(MAC_FRAMEWORK_VERSION)/Headers/actions # 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 libactionsincdir = $(includedir)/Inventor/actions endif libactionsinc_HEADERS = $(PublicHeaders) install-libactionsincHEADERS: $(libactionsinc_HEADERS) @$(NORMAL_INSTALL) @if test x"$(libactionsinc_HEADERS)" = x""; then :; else \ echo " $(mkinstalldirs) $(DESTDIR)$(libactionsincdir)"; \ $(mkinstalldirs) $(DESTDIR)$(libactionsincdir); \ fi @list='$(libactionsinc_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)$(libactionsincdir)/$$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)$(libactionsincdir)/$$f"; \ if test -x "$$file"; then \ echo " rm -f $$file"; \ rm -f "$$file"; \ fi \ done; \ : ##$ END TEMPLATE Make-Include-Common