Move some make variables around
authorIan Lynagh <igloo@earth.li>
Wed, 19 Jan 2011 22:15:45 +0000 (22:15 +0000)
committerIan Lynagh <igloo@earth.li>
Wed, 19 Jan 2011 22:15:45 +0000 (22:15 +0000)
rules/build-package.mk
rules/build-prog.mk

index ab73ebe..7e2ce68 100644 (file)
@@ -64,6 +64,18 @@ define build-package-helper
 
 $(call package-config,$1,$2,$3)
 
+# Bootstrapping libs are only built one way
+ifeq "$3" "0"
+$1_$2_WAYS = v
+else
+$1_$2_WAYS = $$(GhcLibWays)
+endif
+
+# We must use a different dependency file if $(GhcLibWays) changes, so
+# encode the ways into the name of the file.
+$1_$2_WAYS_DASHED = $$(subst $$(space),,$$(patsubst %,-%,$$(strip $$($1_$2_WAYS))))
+$1_$2_depfile_base = $1/$2/build/.depend$$($1_$2_WAYS_DASHED)
+
 ########################################
 ifeq "$$($1_$2_CONFIGURE_PHASE)" ""
 $$(error No configure phase for $1_$2)
@@ -125,24 +137,12 @@ endif
 
 ifeq "$$(phase_$$($1_$2_CONFIGURE_PHASE)_done)" "YES"
 
-# Bootstrapping libs are only built one way
-ifeq "$3" "0"
-$1_$2_WAYS = v
-else
-$1_$2_WAYS = $$(GhcLibWays)
-endif
-
 $(call hs-sources,$1,$2)
 $(call c-sources,$1,$2)
 $(call includes-sources,$1,$2)
 
 # --- DEPENDENCIES
 
-# We must use a different dependency file if $(GhcLibWays) changes, so
-# encode the ways into the name of the file.
-$1_$2_WAYS_DASHED = $$(subst $$(space),,$$(patsubst %,-%,$$(strip $$($1_$2_WAYS))))
-$1_$2_depfile_base = $1/$2/build/.depend$$($1_$2_WAYS_DASHED)
-
 $(call build-dependencies,$1,$2,$3)
 
 # --- BUILDING
index b910e78..baa8bed 100644 (file)
@@ -54,6 +54,8 @@ endif
 
 $(call package-config,$1,$2,$3)
 
+$1_$2_depfile_base = $1/$2/build/.depend
+
 ifeq "$$($1_$2_INSTALL_INPLACE)" "NO"
 ifeq "$(findstring clean,$(MAKECMDGOALS))" ""
 $1_$2_INPLACE = $$(error $1_$2 should not be installed inplace, but INPLACE var evaluated)
@@ -156,8 +158,6 @@ $(call c-sources,$1,$2)
 
 # --- DEPENDENCIES
 
-$1_$2_depfile_base = $1/$2/build/.depend
-
 $(call build-dependencies,$1,$2,$3)
 
 # --- IMPLICIT RULES