summaryrefslogtreecommitdiff
path: root/mk/paths.mk
diff options
context:
space:
mode:
Diffstat (limited to 'mk/paths.mk')
-rw-r--r--mk/paths.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/mk/paths.mk b/mk/paths.mk
index 51a75f44e1..a48fc7ba8e 100644
--- a/mk/paths.mk
+++ b/mk/paths.mk
@@ -111,7 +111,7 @@ INSTALL_DIR = $(FPTOOLS_TOP)/glafp-utils/mkdirhier/mkdirhier
# NB. use := rather than = here, otherwise the wildcard will get re-computed
# every time PRE_SRCS is expanded (this happens a lot).
-PRE_SRCS := $(wildcard $(patsubst ./%, %, \
+ALL_SRCS = $(wildcard $(patsubst ./%, %, \
$(patsubst %,%/*.hs, . $(ALL_DIRS)) \
$(patsubst %,%/*.lhs, . $(ALL_DIRS)) \
$(patsubst %,%/*.y, . $(ALL_DIRS)) \
@@ -125,6 +125,8 @@ PRE_SRCS := $(wildcard $(patsubst ./%, %, \
$(patsubst %,%/*.hsc, . $(ALL_DIRS)) \
))
+# ALL_SRCS is computed once and for all into PRE_SRCS at the top of target.mk.
+
PRE_HS_SRCS = $(filter %.hs, $(PRE_SRCS))
PRE_LHS_SRCS = $(filter %.lhs, $(PRE_SRCS))