packages feed

prefix-units-0.1.0: Makefile

CABAL_OPTS = --hyperlink-source

build:
	cabal build

int-docs:
	cabal haddock \
	  $(CABAL_OPTS) \
	  --internal

haddock:
	cabal haddock \
	  $(CABAL_OPTS)

configure:
	cabal clean
	cabal configure --enable-tests --enable-library-coverage

test:
	cabal build
	cabal test

dist:
	cabal sdist

.PHONY: build int-docs haddock configure test dist