Select the types of activity you want to include in your feed.
Add SUBDIR_NAME to principal Makefiles
SUBDIR_NAME goes along with ROOTDIR - where ROOTDIR is the relative path from Makefile back to the root directory, SUBDIR_NAME is the implicit path from the root directory to Makefile.
···1616# The main Makefile
17171818ROOTDIR = .
1919+SUBDIR_NAME =
2020+1921# NOTE: it is important that the OCAMLDEP and OCAMLLEX variables
2022# are defined *before* Makefile.common gets included, so that
2123# their local definitions here take precedence over their
+1
api_docgen/Makefile
···1414#**************************************************************************
1515# Used by included Makefiles
1616ROOTDIR = ..
1717+SUBDIR_NAME = api_docgen
1718-include ../Makefile.build_config
18191920odoc-%:
+1
api_docgen/ocamldoc/Makefile
···1414#**************************************************************************
1515# Used by included Makefiles
1616ROOTDIR = ../..
1717+SUBDIR_NAME = api_docgen/ocamldoc
1718include ../Makefile.common
1819vpath %.mli ../../stdlib $(DOC_COMPILERLIBS_DIRS) $(DOC_STDLIB_DIRS)
1920
+1
api_docgen/odoc/Makefile
···15151616# Used by included Makefiles
1717ROOTDIR = ../..
1818+SUBDIR_NAME = api_docgen/odoc
18191920include ../Makefile.common
2021
···1414#**************************************************************************
15151616ROOTDIR=..
1717+SUBDIR_NAME=otherlibs
1718include $(ROOTDIR)/Makefile.common
18191920# Although the OTHERLIBS variable is defined in ../Makefile.config,
+1
otherlibs/Makefile.otherlibs.common
···1616# Common Makefile for otherlibs
17171818ROOTDIR=../..
1919+SUBDIR_NAME=otherlibs/$(LIBNAME)
1920include $(ROOTDIR)/Makefile.common
2021include $(ROOTDIR)/Makefile.best_binaries
2122
···1414#**************************************************************************
15151616ROOTDIR = ..
1717+SUBDIR_NAME = stdlib
1718# NOTE: it is important that the OCAMLDEP variable is defined *before*
1819# Makefile.common gets included, so that its local definition here
1920# take precedence over its general shared definitions in Makefile.common.