blob: 51134384fc187409b7f201e75eb0477ac854ac7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/make -f
# Standard way of building Haskell libraries .
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
# If no threaded RTS is found, disable it
DEB_SETUP_GHC_CONFIGURE_ARGS := $(shell test -e /usr/lib/ghc/rts/libHSrts_thr.a || echo --flags=-threaded) --datasubdir=/usr/share/hlint
build/$(CABAL_PACKAGE) :: build-ghc-stamp
install/$(CABAL_PACKAGE) :: build/$(CABAL_PACKAGE)
|