--- a/config/rules.mk
+++ b/config/rules.mk
@@ -456,45 +456,44 @@ endif
endif
XPIDL_GEN_DIR = _xpidlgen
ifdef MOZ_UPDATE_XTERM
# Its good not to have a newline at the end of the titlebar string because it
# makes the make -s output easier to read. Echo -n does not work on all
# platforms, but we can trick sed into doing it.
-UPDATE_TITLE = sed -e "s!Y!$@ in $(shell $(BUILD_TOOLS)/print-depth-path.sh)/$(dir)!" $(MOZILLA_DIR)/config/xterm.str;
-UPDATE_TITLE_export = sed -e "s!Y!export in $(shell $(BUILD_TOOLS)/print-depth-path.sh)/$*!" $(MOZILLA_DIR)/config/xterm.str;
-UPDATE_TITLE_libs = sed -e "s!Y!libs in $(shell $(BUILD_TOOLS)/print-depth-path.sh)/$*!" $(MOZILLA_DIR)/config/xterm.str;
-UPDATE_TITLE_tools = sed -e "s!Y!tools in $(shell $(BUILD_TOOLS)/print-depth-path.sh)/$*!" $(MOZILLA_DIR)/config/xterm.str;
+UPDATE_TITLE = sed -e "s!Y!$(1) in $(shell $(BUILD_TOOLS)/print-depth-path.sh)/$(2)!" $(MOZILLA_DIR)/config/xterm.str;
endif
+define SUBMAKE # $(call SUBMAKE,target,directory)
+@$(UPDATE_TITLE)
++@$(MAKE) $(if $(2),-C $(2)) $(1)
+
+endef # The extra line is important here! don't delete it
+
ifneq (,$(strip $(DIRS)))
LOOP_OVER_DIRS = \
- @$(EXIT_ON_ERROR) \
- $(foreach dir,$(DIRS),$(UPDATE_TITLE) $(MAKE) -C $(dir) $@; )
+ $(foreach dir,$(DIRS),$(call SUBMAKE,$@,$(dir)))
endif
# we only use this for the makefiles target and other stuff that doesn't matter
ifneq (,$(strip $(PARALLEL_DIRS)))
LOOP_OVER_PARALLEL_DIRS = \
- @$(EXIT_ON_ERROR) \
- $(foreach dir,$(PARALLEL_DIRS),$(UPDATE_TITLE) $(MAKE) -C $(dir) $@; )
+ $(foreach dir,$(PARALLEL_DIRS),$(call SUBMAKE,$@,$(dir)))
endif
ifneq (,$(strip $(STATIC_DIRS)))
LOOP_OVER_STATIC_DIRS = \
- @$(EXIT_ON_ERROR) \
- $(foreach dir,$(STATIC_DIRS),$(UPDATE_TITLE) $(MAKE) -C $(dir) $@; )
+ $(foreach dir,$(STATIC_DIRS),$(call SUBMAKE,$@,$(dir)))
endif
ifneq (,$(strip $(TOOL_DIRS)))
LOOP_OVER_TOOL_DIRS = \
- @$(EXIT_ON_ERROR) \
- $(foreach dir,$(TOOL_DIRS),$(UPDATE_TITLE) $(MAKE) -C $(dir) $@; )
+ $(foreach dir,$(TOOL_DIRS),$(call SUBMAKE,$@,$(dir)))
endif
ifdef PARALLEL_DIRS
# create a bunch of fake targets for order-only processing
PARALLEL_DIRS_export = $(addsuffix _export,$(PARALLEL_DIRS))
PARALLEL_DIRS_libs = $(addsuffix _libs,$(PARALLEL_DIRS))
PARALLEL_DIRS_tools = $(addsuffix _tools,$(PARALLEL_DIRS))
@@ -715,24 +714,22 @@ SUBMAKEFILES += $(addsuffix /Makefile, $
# The root makefile doesn't want to do a plain export/libs, because
# of the tiers and because of libxul. Suppress the default rules in favor
# of something else. Makefiles which use this var *must* provide a sensible
# default rule before including rules.mk
ifndef SUPPRESS_DEFAULT_RULES
ifdef TIERS
default all alldep::
- $(EXIT_ON_ERROR) \
- $(foreach tier,$(TIERS),$(MAKE) tier_$(tier); ) true
-
+ $(foreach tier,$(TIERS),$(call SUBMAKE,tier_$(tier)))
else
default all::
ifneq (,$(strip $(STATIC_DIRS)))
- $(foreach dir,$(STATIC_DIRS),$(MAKE) -C $(dir); )
+ $(foreach dir,$(STATIC_DIRS),$(call SUBMAKE,,$(dir)))
endif
$(MAKE) export
$(MAKE) libs
$(MAKE) tools
# Do depend as well
alldep::
$(MAKE) export
@@ -748,96 +745,75 @@ ECHO := echo
QUIET :=
else
ECHO := true
QUIET := -q
endif
MAKE_TIER_SUBMAKEFILES = +$(if $(tier_$*_dirs),$(MAKE) $(addsuffix /Makefile,$(tier_$*_dirs)))
-export_tier_%:
+export_tier_%:
@$(ECHO) "$@"
@$(MAKE_TIER_SUBMAKEFILES)
- @$(EXIT_ON_ERROR) \
- $(foreach dir,$(tier_$*_dirs),$(MAKE) -C $(dir) export; ) true
+ $(foreach dir,$(tier_$*_dirs),$(call SUBMAKE,export,$(dir)))
libs_tier_%:
@$(ECHO) "$@"
@$(MAKE_TIER_SUBMAKEFILES)
- @$(EXIT_ON_ERROR) \
- $(foreach dir,$(tier_$*_dirs),$(MAKE) -C $(dir) libs; ) true
+ $(foreach dir,$(tier_$*_dirs),$(call SUBMAKE,libs,$(dir)))
tools_tier_%:
@$(ECHO) "$@"
@$(MAKE_TIER_SUBMAKEFILES)
- @$(EXIT_ON_ERROR) \
- $(foreach dir,$(tier_$*_dirs),$(MAKE) -C $(dir) tools; ) true
+ $(foreach dir,$(tier_$*_dirs),$(call SUBMAKE,tools,$(dir)))
$(foreach tier,$(TIERS),tier_$(tier))::
@$(ECHO) "$@: $($@_staticdirs) $($@_dirs)"
- @$(EXIT_ON_ERROR) \
- $(foreach dir,$($@_staticdirs),$(MAKE) -C $(dir); ) true
+ $(foreach dir,$($@_staticdirs),$(call SUBMAKE,,$(dir)))
$(MAKE) export_$@
$(MAKE) libs_$@
# Do everything from scratch
everything::
$(MAKE) clean
$(MAKE) alldep
# Add dummy depend target for tinderboxes
depend::
-ifdef ALL_PLATFORMS
-all_platforms:: $(NFSPWD)
- @d=`$(NFSPWD)`; \
- if test ! -d LOGS; then rm -rf LOGS; mkdir LOGS; else true; fi; \
- for h in $(PLATFORM_HOSTS); do \
- echo "On $$h: $(MAKE) $(ALL_PLATFORMS) >& LOGS/$$h.log";\
- rsh $$h -n "(chdir $$d; \
- $(MAKE) $(ALL_PLATFORMS) >& LOGS/$$h.log; \
- echo DONE) &" 2>&1 > LOGS/$$h.pid & \
- sleep 1; \
- done
-
-$(NFSPWD):
- cd $(@D); $(MAKE) $(@F)
-endif
-
# Target to only regenerate makefiles
makefiles: $(SUBMAKEFILES)
ifneq (,$(DIRS)$(TOOL_DIRS)$(PARALLEL_DIRS))
- +$(LOOP_OVER_PARALLEL_DIRS)
- +$(LOOP_OVER_DIRS)
- +$(LOOP_OVER_TOOL_DIRS)
+ $(LOOP_OVER_PARALLEL_DIRS)
+ $(LOOP_OVER_DIRS)
+ $(LOOP_OVER_TOOL_DIRS)
endif
ifdef PARALLEL_DIRS
export:: $(PARALLEL_DIRS_export)
$(PARALLEL_DIRS_export): %_export: %/Makefile
- +@$(UPDATE_TITLE_export) $(MAKE) -C $* export
+ +@$(call SUBMAKE,export,$*)
endif
export:: $(SUBMAKEFILES) $(MAKE_DIRS) $(if $(EXPORTS)$(XPIDLSRCS)$(SDK_HEADERS)$(SDK_XPIDLSRCS),$(PUBLIC)) $(if $(SDK_HEADERS)$(SDK_XPIDLSRCS),$(SDK_PUBLIC)) $(if $(XPIDLSRCS),$(IDL_DIR)) $(if $(SDK_XPIDLSRCS),$(SDK_IDL_DIR))
- +$(LOOP_OVER_DIRS)
- +$(LOOP_OVER_TOOL_DIRS)
+ $(LOOP_OVER_DIRS)
+ $(LOOP_OVER_TOOL_DIRS)
ifdef PARALLEL_DIRS
tools:: $(PARALLEL_DIRS_tools)
$(PARALLEL_DIRS_tools): %_tools: %/Makefile
- +@$(UPDATE_TITLE_tools) $(MAKE) -C $* tools
+ +@$(call SUBMAKE,tools,$*)
endif
tools:: $(SUBMAKEFILES) $(MAKE_DIRS)
- +$(LOOP_OVER_DIRS)
+ $(LOOP_OVER_DIRS)
ifneq (,$(strip $(TOOL_DIRS)))
- @$(EXIT_ON_ERROR) \
- $(foreach dir,$(TOOL_DIRS),$(UPDATE_TITLE) $(MAKE) -C $(dir) libs; )
+ $(foreach dir,$(TOOL_DIRS),$(call SUBMAKE,libs,$(dir)))
endif
#
# Rule to create list of libraries for final link
#
export::
ifdef LIBRARY_NAME
ifdef EXPORT_LIBRARY
@@ -893,17 +869,17 @@ endif # ! MOZILLA_1_9_2_BRANCH
# Dependencies which, if modified, should cause everything to rebuild
GLOBAL_DEPS += Makefile Makefile.in $(DEPTH)/config/autoconf.mk $(topsrcdir)/config/config.mk
##############################################
ifdef PARALLEL_DIRS
libs:: $(PARALLEL_DIRS_libs)
$(PARALLEL_DIRS_libs): %_libs: %/Makefile
- +@$(UPDATE_TITLE_libs) $(MAKE) -C $* libs
+ +@$(call SUBMAKE,libs,$*)
endif
libs:: $(SUBMAKEFILES) $(MAKE_DIRS) $(HOST_LIBRARY) $(LIBRARY) $(SHARED_LIBRARY) $(IMPORT_LIBRARY) $(HOST_PROGRAM) $(PROGRAM) $(HOST_SIMPLE_PROGRAMS) $(SIMPLE_PROGRAMS)
ifndef NO_DIST_INSTALL
ifdef LIBRARY
ifdef EXPORT_LIBRARY # Stage libs that will be linked into a static build
ifdef IS_COMPONENT
$(INSTALL) $(IFLAGS1) $(LIBRARY) $(MOZDEPTH)/staticlib/components
@@ -954,17 +930,17 @@ ifdef HOST_PROGRAM
endif
ifdef HOST_SIMPLE_PROGRAMS
$(INSTALL) $(IFLAGS2) $(HOST_SIMPLE_PROGRAMS) $(DIST)/host/bin
endif
ifdef HOST_LIBRARY
$(INSTALL) $(IFLAGS1) $(HOST_LIBRARY) $(DIST)/host/lib
endif
endif # !NO_DIST_INSTALL
- +$(LOOP_OVER_DIRS)
+ $(LOOP_OVER_DIRS)
##############################################
ifndef NO_PROFILE_GUIDED_OPTIMIZE
ifdef MOZ_PROFILE_USE
ifeq ($(OS_ARCH)_$(GNU_CC)$(INTERNAL_TOOLS), WINNT_)
# When building with PGO, we have to make sure to re-link
# in the MOZ_PROFILE_USE phase if we linked in the
@@ -999,26 +975,20 @@ endif # NO_PROFILE_GUIDED_OPTIMIZE
##############################################
checkout:
$(PYTHON) $(topsrcdir)/client.py checkout
clean clobber realclean clobber_all:: $(SUBMAKEFILES)
-rm -f $(ALL_TRASH)
-rm -rf $(ALL_TRASH_DIRS)
- +-$(LOOP_OVER_PARALLEL_DIRS)
- +-$(LOOP_OVER_DIRS)
- +-$(LOOP_OVER_STATIC_DIRS)
- +-$(LOOP_OVER_TOOL_DIRS)
+ $(foreach dir,$(PARALLEL_DIRS) $(DIRS) $(STATIC_DIRS) $(TOOL_DIRS),-$(call SUBMAKE,$@,$(dir)))
distclean:: $(SUBMAKEFILES)
- +-$(LOOP_OVER_PARALLEL_DIRS)
- +-$(LOOP_OVER_DIRS)
- +-$(LOOP_OVER_STATIC_DIRS)
- +-$(LOOP_OVER_TOOL_DIRS)
+ $(foreach dir,$(PARALLEL_DIRS) $(DIRS) $(STATIC_DIRS) $(TOOL_DIRS),-$(call SUBMAKE,$@,$(dir)))
-rm -rf $(ALL_TRASH_DIRS)
-rm -f $(ALL_TRASH) \
Makefile .HSancillary \
$(wildcard *.$(OBJ_SUFFIX)) $(wildcard *.ho) $(wildcard host_*.o*) \
$(wildcard *.$(LIB_SUFFIX)) $(wildcard *$(DLL_SUFFIX)) \
$(wildcard *.$(IMPORT_LIB_SUFFIX))
ifeq ($(OS_ARCH),OS2)
-rm -f $(PROGRAM:.exe=.map)
@@ -1430,17 +1400,17 @@ host_%.$(OBJ_SUFFIX): %.cc $(GLOBAL_DEPS
host_%.$(OBJ_SUFFIX): %.m $(GLOBAL_DEPS)
$(REPORT_BUILD)
$(ELOG) $(HOST_CC) $(HOST_OUTOPTION)$@ -c $(HOST_CFLAGS) $(HOST_CMFLAGS) $(INCLUDES) $(NSPR_CFLAGS) $(_VPATH_SRCS)
host_%.$(OBJ_SUFFIX): %.mm $(GLOBAL_DEPS)
$(REPORT_BUILD)
$(ELOG) $(HOST_CXX) $(HOST_OUTOPTION)$@ -c $(HOST_CXXFLAGS) $(HOST_CMMFLAGS) $(INCLUDES) $(NSPR_CFLAGS) $(_VPATH_SRCS)
-%: %.c $(GLOBAL_DEPS)
+%:: %.c $(GLOBAL_DEPS)
$(REPORT_BUILD)
@$(MAKE_DEPS_AUTO_CC)
$(ELOG) $(CC) $(CFLAGS) $(LDFLAGS) $(OUTOPTION)$@ $(_VPATH_SRCS)
%.$(OBJ_SUFFIX): %.c $(GLOBAL_DEPS)
$(REPORT_BUILD)
@$(MAKE_DEPS_AUTO_CC)
$(ELOG) $(CC) $(OUTOPTION)$@ -c $(COMPILE_CFLAGS) $(_VPATH_SRCS)
@@ -1450,17 +1420,17 @@ ifdef ASFILES
# a '-c' flag.
%.$(OBJ_SUFFIX): %.$(ASM_SUFFIX) $(GLOBAL_DEPS)
$(AS) -o $@ $(ASFLAGS) $(AS_DASH_C_FLAG) $(_VPATH_SRCS)
endif
%.$(OBJ_SUFFIX): %.S $(GLOBAL_DEPS)
$(AS) -o $@ $(ASFLAGS) -c $<
-%: %.cpp $(GLOBAL_DEPS)
+%:: %.cpp $(GLOBAL_DEPS)
@$(MAKE_DEPS_AUTO_CXX)
$(CCC) $(OUTOPTION)$@ $(CXXFLAGS) $(_VPATH_SRCS) $(LDFLAGS)
#
# Please keep the next two rules in sync.
#
%.$(OBJ_SUFFIX): %.cc $(GLOBAL_DEPS)
$(REPORT_BUILD)
@@ -1517,22 +1487,22 @@ else
ifdef GNU_CC
$(RC) $(RCFLAGS) $(filter-out -U%,$(DEFINES)) $(INCLUDES:-I%=--include-dir %) $(OUTOPTION)$@ $(_VPATH_SRCS)
else
$(RC) $(RCFLAGS) -r $(DEFINES) $(INCLUDES) $(OUTOPTION)$@ $(_VPATH_SRCS)
endif
endif
# need 3 separate lines for OS/2
-%: %.pl
+%:: %.pl
rm -f $@
cp $< $@
chmod +x $@
-%: %.sh
+%:: %.sh
rm -f $@; cp $< $@; chmod +x $@
# Cancel these implicit rules
#
%: %,v
%: RCS/%,v
@@ -1736,19 +1706,19 @@ endif # XPIDLSRCS
export-idl:: $(SUBMAKEFILES) $(MAKE_DIRS)
ifneq ($(XPIDLSRCS)$(SDK_XPIDLSRCS),)
ifndef NO_DIST_INSTALL
export-idl:: $(XPIDLSRCS) $(SDK_XPIDLSRCS) $(IDL_DIR)
$(INSTALL) $(IFLAGS1) $^
endif
endif
- +$(LOOP_OVER_PARALLEL_DIRS)
- +$(LOOP_OVER_DIRS)
- +$(LOOP_OVER_TOOL_DIRS)
+ $(LOOP_OVER_PARALLEL_DIRS)
+ $(LOOP_OVER_DIRS)
+ $(LOOP_OVER_TOOL_DIRS)
ifneq ($(SDK_XPIDLSRCS),)
# export .idl files to $(IDL_DIR) & $(SDK_IDL_DIR)
ifndef NO_DIST_INSTALL
export:: $(SDK_XPIDLSRCS) $(IDL_DIR)
@@ -1862,19 +1832,19 @@ endif # SDK_BINARY
################################################################################
# CHROME PACKAGING
JAR_MANIFEST := $(srcdir)/jar.mn
chrome::
$(MAKE) realchrome
- +$(LOOP_OVER_PARALLEL_DIRS)
- +$(LOOP_OVER_DIRS)
- +$(LOOP_OVER_TOOL_DIRS)
+ $(LOOP_OVER_PARALLEL_DIRS)
+ $(LOOP_OVER_DIRS)
+ $(LOOP_OVER_TOOL_DIRS)
$(FINAL_TARGET)/chrome:
$(NSINSTALL) -D $@
ifneq (,$(wildcard $(JAR_MANIFEST)))
ifndef NO_DIST_INSTALL
libs realchrome:: $(CHROME_DEPS) $(FINAL_TARGET)/chrome
$(PYTHON) $(MOZILLA_DIR)/config/JarMaker.py \
@@ -2014,25 +1984,25 @@ endef
$(REPORT_BUILD)
@$(MAKE_DEPS_NOAUTO)
ifneq (,$(OBJS)$(XPIDLSRCS)$(SDK_XPIDLSRCS)$(SIMPLE_PROGRAMS))
depend:: $(SUBMAKEFILES) $(MAKE_DIRS) $(MDDEPFILES)
else
depend:: $(SUBMAKEFILES)
endif
- +$(LOOP_OVER_PARALLEL_DIRS)
- +$(LOOP_OVER_DIRS)
- +$(LOOP_OVER_TOOL_DIRS)
+ $(LOOP_OVER_PARALLEL_DIRS)
+ $(LOOP_OVER_DIRS)
+ $(LOOP_OVER_TOOL_DIRS)
dependclean:: $(SUBMAKEFILES)
rm -f $(MDDEPFILES)
- +$(LOOP_OVER_PARALLEL_DIRS)
- +$(LOOP_OVER_DIRS)
- +$(LOOP_OVER_TOOL_DIRS)
+ $(LOOP_OVER_PARALLEL_DIRS)
+ $(LOOP_OVER_DIRS)
+ $(LOOP_OVER_TOOL_DIRS)
endif # MOZ_AUTO_DEPS
endif # COMPILER_DEPEND
#############################################################################
# MDDEPDIR is the subdirectory where all the dependency files are placed.
@@ -2114,33 +2084,33 @@ endif
# hundreds of built-in suffix rules for stuff we don't need.
#
.SUFFIXES:
#
# Fake targets. Always run these rules, even if a file/directory with that
# name already exists.
#
-.PHONY: all all_platforms alltags boot checkout chrome realchrome clean clobber clobber_all export install libs makefiles realclean run_apprunner tools $(DIRS) $(TOOL_DIRS) FORCE
+.PHONY: all alltags boot checkout chrome realchrome clean clobber clobber_all export install libs makefiles realclean run_apprunner tools $(DIRS) $(TOOL_DIRS) FORCE
# Used as a dependency to force targets to rebuild
FORCE:
# Delete target if error occurs when building target
.DELETE_ON_ERROR:
# Properly set LIBPATTERNS for the platform
.LIBPATTERNS = $(if $(IMPORT_LIB_SUFFIX),$(LIB_PREFIX)%.$(IMPORT_LIB_SUFFIX)) $(LIB_PREFIX)%.$(LIB_SUFFIX) $(DLL_PREFIX)%$(DLL_SUFFIX)
tags: TAGS
TAGS: $(SUBMAKEFILES) $(CSRCS) $(CPPSRCS) $(wildcard *.h)
-etags $(CSRCS) $(CPPSRCS) $(wildcard *.h)
- +$(LOOP_OVER_PARALLEL_DIRS)
- +$(LOOP_OVER_DIRS)
+ $(LOOP_OVER_PARALLEL_DIRS)
+ $(LOOP_OVER_DIRS)
echo-variable-%:
@echo "$($*)"
echo-tiers:
@echo $(TIERS)
echo-dirs:
@@ -2153,18 +2123,18 @@ echo-requires:
@echo $(REQUIRES)
echo-requires-recursive::
ifdef _REPORT_ALL_DIRS
@echo $(subst $(topsrcdir)/,,$(srcdir)): $(MODULE): $(REQUIRES)
else
@$(if $(REQUIRES),echo $(subst $(topsrcdir)/,,$(srcdir)): $(MODULE): $(REQUIRES))
endif
- +$(LOOP_OVER_PARALLEL_DIRS)
- +$(LOOP_OVER_DIRS)
+ $(LOOP_OVER_PARALLEL_DIRS)
+ $(LOOP_OVER_DIRS)
echo-depth-path:
@$(MOZILLA_SRCDIR)/build/unix/print-depth-path.sh
echo-module-name:
@$(MOZILLA_SRCDIR)/build/package/rpm/print-module-name.sh
echo-module-filelist:
@@ -2183,18 +2153,18 @@ ifneq (,$(filter $(PROGRAM) $(HOST_PROGR
@echo "IMPORT_LIBRARY = $(IMPORT_LIBRARY)"
@echo "STATIC_LIBS = $(STATIC_LIBS)"
@echo "SHARED_LIBS = $(SHARED_LIBS)"
@echo "EXTRA_DSO_LIBS = $(EXTRA_DSO_LIBS)"
@echo "EXTRA_DSO_LDOPTS = $(EXTRA_DSO_LDOPTS)"
@echo "DEPENDENT_LIBS = $(DEPENDENT_LIBS)"
@echo --------------------------------------------------------------------------------
endif
- +$(LOOP_OVER_PARALLEL_DIRS)
- +$(LOOP_OVER_DIRS)
+ $(LOOP_OVER_PARALLEL_DIRS)
+ $(LOOP_OVER_DIRS)
showbuild:
@echo "MOZ_BUILD_ROOT = $(MOZ_BUILD_ROOT)"
@echo "MOZ_WIDGET_TOOLKIT = $(MOZ_WIDGET_TOOLKIT)"
@echo "CC = $(CC)"
@echo "CXX = $(CXX)"
@echo "CCC = $(CCC)"
@echo "CPP = $(CPP)"
@@ -2241,25 +2211,18 @@ showhost:
@echo "HOST_OBJS = $(HOST_OBJS)"
@echo "HOST_PROGOBJS = $(HOST_PROGOBJS)"
@echo "HOST_LIBRARY = $(HOST_LIBRARY)"
showbuildmods::
@echo "Build Modules = $(BUILD_MODULES)"
@echo "Module dirs = $(BUILD_MODULE_DIRS)"
-zipmakes:
-ifneq (,$(filter $(PROGRAM) $(SIMPLE_PROGRAMS) $(LIBRARY) $(SHARED_LIBRARY),$(TARGETS)))
- zip $(DEPTH)/makefiles $(subst $(topsrcdir),$(MOZ_SRC)/mozilla,$(srcdir)/Makefile.in)
-endif
- +$(LOOP_OVER_PARALLEL_DIRS)
- +$(LOOP_OVER_DIRS)
-
documentation:
@cd $(DEPTH)
$(DOXYGEN) $(DEPTH)/config/doxygen.cfg
ifdef ENABLE_TESTS
check:: $(SUBMAKEFILES) $(MAKE_DIRS)
- +$(LOOP_OVER_PARALLEL_DIRS)
- +$(LOOP_OVER_DIRS)
- +$(LOOP_OVER_TOOL_DIRS)
+ $(LOOP_OVER_PARALLEL_DIRS)
+ $(LOOP_OVER_DIRS)
+ $(LOOP_OVER_TOOL_DIRS)
endif