Select the types of activity you want to include in your feed.
Keep the stripped bytecode binaries
No need to remove things during install when it will be done later by a package manager. Also prepares for the possibility of letting something else install the binary subsequently.
···510510$(eval $(call _OCAML_NATIVE_LIBRARY,$(1)))
511511endef # OCAML_LIBRARY
512512513513-# Installing a bytecode executable, with debug information removed
514514-define INSTALL_STRIPPED_BYTE_PROG
515515-$(OCAMLRUN) $(ROOTDIR)/tools/stripdebug$(EXE) $(1) $(1).tmp \
516516-&& $(INSTALL_PROG) $(1).tmp $(2) \
517517-&& rm $(1).tmp
518518-endef # INSTALL_STRIPPED_BYTE_PROG
513513+# Strip debug information from a bytecode executable
514514+define STRIP_BYTE_PROG
515515+$(OCAMLRUN) $(ROOTDIR)/tools/stripdebug$(EXE) \
516516+ $(strip $(1)) $(strip $(1)).stripped
517517+endef # STRIP_BYTE_PROG
519518520519# ocamlc has several mechanisms for linking a bytecode image to the runtime
521520# which executes it. The exact mechanism depends on the platform and the precise