summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/cabal/cabal02/Makefile
blob: 578e6fa7ed8cb746241b978a92f0bee91475fc0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
TOP=../../../..
include $(TOP)/mk/boilerplate.mk
include $(TOP)/mk/test.mk

CABAL_SETUP = $(FPTOOLS_TOP_ABS)/libraries/Cabal/cabal-setup/cabal-setup

CONFIG_ARGS = --with-compiler=$(TEST_HC) --ghc-options='$(TEST_HC_OPTS)' --with-hc-pkg=$(GHC_PKG)

# We have 3 packages, P-1.0, P-2.0, and Q.  Q depends on P-1.0.
# We have an executable R, that depends on P-2.0 and Q, so the resulting
# executable will link to both P-1.0 and P-2.0.

cabal02 : 
	(cd P1 && $(CABAL_SETUP) configure $(CONFIG_ARGS))
	(cd P1 && $(CABAL_SETUP) build)
	(cd P1 && $(CABAL_SETUP) register --inplace --user)
	(cd P2 && $(CABAL_SETUP) configure $(CONFIG_ARGS))
	(cd P2 && $(CABAL_SETUP) build)
	(cd P2 && $(CABAL_SETUP) register --inplace --user)
	(cd Q  && $(CABAL_SETUP) configure $(CONFIG_ARGS))
	(cd Q  && $(CABAL_SETUP) build)
	(cd Q  && $(CABAL_SETUP) register --inplace --user)
	(cd R  && $(CABAL_SETUP) configure $(CONFIG_ARGS))
	(cd R  && $(CABAL_SETUP) build)
	$(MAKE) clean

clean ::
	(cd P1 && $(CABAL_SETUP) unregister --user)
	(cd P2 && $(CABAL_SETUP) unregister --user)
	(cd Q  && $(CABAL_SETUP) unregister --user)
	(cd P1 && $(CABAL_SETUP) clean)
	(cd P2 && $(CABAL_SETUP) clean)
	(cd Q  && $(CABAL_SETUP) clean)