diff options
author | Ian Lynagh <igloo@earth.li> | 2008-07-11 15:14:48 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-07-11 15:14:48 +0000 |
commit | 2a150d4b7d9b6cb7cca96b10749f406128ca57b6 (patch) | |
tree | e00022904cea0b94a0c33fc56f3c8d2975af82e9 /utils/hsc2hs | |
parent | 28a5c73a83e8f27c31cad02da07c81e4e6764303 (diff) | |
download | haskell-2a150d4b7d9b6cb7cca96b10749f406128ca57b6.tar.gz |
Split up Cabal configure flag variables for more flexibility
Diffstat (limited to 'utils/hsc2hs')
-rw-r--r-- | utils/hsc2hs/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/utils/hsc2hs/Makefile b/utils/hsc2hs/Makefile index 297177995e..b26562b352 100644 --- a/utils/hsc2hs/Makefile +++ b/utils/hsc2hs/Makefile @@ -14,14 +14,20 @@ INSTALL_FLAGS = --enable-shell-wrappers endif boot: - $(CABAL) configure --distpref dist-inplace $(INPLACE_CONFIGURE_FLAGS) + $(CABAL) configure --distpref dist-inplace \ + $(INPLACE_DIRS_CONFIGURE_FLAGS) \ + $(USE_BOOT_CONFIGURE_FLAGS) \ + $(COMMON_CONFIGURE_FLAGS) $(CABAL) build --distpref dist-inplace $(BUILD_FLAGS) $(CABAL) install --distpref dist-inplace $(INSTALL_FLAGS) ifneq "$(NO_INSTALL_HSC2HS)" "YES" # XXX #all: -# $(CABAL) configure --distpref dist-install $(INSTALL_CONFIGURE_FLAGS) +# $(CABAL) configure --distpref dist-install \ +# $(INPLACE_DIRS_CONFIGURE_FLAGS) \ +# $(USE_STAGE1_CONFIGURE_FLAGS) \ +# $(COMMON_CONFIGURE_FLAGS) # $(CABAL) build --distpref dist-install $(BUILD_FLAGS) endif |