Skip to content
Snippets Groups Projects
Commit 20d0ce2f authored by Ian Lynagh's avatar Ian Lynagh
Browse files

Simplify specifying that some libraries need to use the build.* rules

Now you just add them to SUBDIRS_BUILD instead of SUBDIRS.
parent d7d75586
No related branches found
No related tags found
No related merge requests found
......@@ -74,9 +74,11 @@ ifeq "$(GhcLibsWithObjectIO)" "YES"
SUBDIRS += $(wildcard ObjectIO)
endif
SUBDIRS += $(wildcard parallel)
SUBDIRS += $(wildcard ndp)
SUBDIRS_BUILD += $(wildcard ndp)
endif
SUBDIRS += $(SUBDIRS_BUILD)
# -----------------------------------------------------------------------------
empty=
......@@ -293,9 +295,9 @@ stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).%: %/setup/Setup
# needs to be done. However, we're careful not to overwrite GNUmakefile
# if it hasn't changed, so that dependency-generation isn't forced
# every time.
# I doubt that the makefile way will work with ndp, so filter it out and use
# a rule below to call build.library.ndp instead
$(foreach SUBDIR,$(filter-out ndp,$(SUBDIRS)),make.library.$(SUBDIR)):\
# Packages in $(SUBDIRS_BUILD) need to use the build.* rules instead of
# make.*, so filter them out and use an alternate rule below instead.
$(foreach SUBDIR,$(filter-out $(SUBDIRS_BUILD),$(SUBDIRS)),make.library.$(SUBDIR)):\
make.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
%/setup/Setup ifBuildable/ifBuildable installPackage/installPackage
if $(IFBUILDABLE) $*; then \
......@@ -310,8 +312,9 @@ make.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
MAKEFILE_LOCAL = $(FPTOOLS_TOP_ABS)/libraries/Makefile.local
# Hack for ndp, as described above
make.library.ndp: build.library.ndp
# Alternate rule, as described above
$(foreach SUBDIR,$(SUBDIRS_BUILD),make.library.$(SUBDIR)):\
make.library.%: build.library.%
# Build the library using 'setup build' (not the default)
$(foreach SUBDIR,$(SUBDIRS),build.library.$(SUBDIR)):\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment