8

我正在做一个玩具项目,以此将我对 Haskell 的享受从理论转移到实践,让自己对 , 等更cabal舒服HUnit

我刚刚在我的项目中添加了一个 Makefile:

test: dist/build
  cabal-dev test

dist/build: dist/setup-config src/*.hs tests/*.hs
  cabal-dev build
  touch dist/build

dist/setup-config: ToyProject.cabal
  cabal-dev configure --enable-tests

因为:

  • cabal-dev install --enable-tests似乎有点矫枉过正(并警告我重新安装)
  • cabal-dev configure --enable-tests && cabal-dev build && cabal-dev test正在做不必要的工作,并且保持状态我是否需要重新配置很无聊
  • 两者都打了很多字

我担心我可能正在使用 Make 重新创建功能,cabal或者cabal-dev已经给了我,但我对两者都不够熟悉,不知道这是否是真的,如果是,我会怎么做。

Makefile 在这里是否合适,或者是否有更直接的方法来执行此操作cabal/ cabal-dev

4

1 回答 1

1

下面是我与 Cabal 包一起使用的 Makefile 的简化版本,我正在与另一个依赖于 Cabal 包的 Haskell 程序并行开发(我经常并行编辑它们,因此我将 Cabal 包作为构建依赖项程序,使用另一个 Makefile :P)。目标是:

  1. cabal在某些源文件实际更改时运行。我在一个非常慢的上网本上使用这个 Makefile,其中 Cabal 依赖解析步骤需要 10 秒,所以我想尽可能避免运行cabal install

  2. 在单独的构建目录中进行独立调试和定期构建。默认情况下,如果您使用 profiling ( --ghc-options=-fprof-auto) 进行 Cabal 构建,然后没有进行 profiling,Cabal 将重新开始,从头开始重新编译所有文件。将构建放在单独的构建目录中可以避免这个问题。

我不确定 (2) 是否对您感兴趣,但 (1) 可能是,而且我看到您只在成功时触摸构建目录,而不是在失败时,我希望这不会正常工作。

这是生成文件:

cabal-install: dist

cabal-install-debug: prof-dist

# You will need to extend this if your cabal build depends on non
# haskell files (here '.lhs' and '.hs' files).
SOURCE = $(shell find src -name '*.lhs' -o -name '*.hs')

# If 'cabal install' fails in building or installing, the
# timestamp on the build dir -- 'dist' or 'prof-dist', stored in
# the make target variable '$@' here -- may still be updated.  So,
# we set the timestamp on the build dir to a long time in the past
# with 'touch --date "@0" $@' in case cabal fails.
CABAL_INSTALL = \
  cabal install $(CABAL_OPTIONS) \
  || { touch --date "@0" $@ ; \
       exit 42 ; }

dist: $(SOURCE)
    $(CABAL_INSTALL)

# Build in a non-default dir, so that we can have debug and non-debug
# versions compiled at the same time.
#
# Added '--disable-optimization' because '-O' messes with
# 'Debug.Trace.trace' and other 'unsafePerformIO' hacks.
prof-dist: CABAL_OPTIONS += --ghc-options="-fprof-auto" --builddir=prof-dist --disable-optimization
prof-dist: $(SOURCE)
    $(CABAL_INSTALL)
于 2013-11-08T22:35:53.357 回答