以下は、Cabal パッケージに依存する別の Haskell プログラムと並行して開発している Cabal パッケージで使用する Makefile の簡略化されたバージョンです (私はしばしばそれらを並行して編集するため、Cabal パッケージをビルドの依存関係として持っています。プログラム、別の Makefile を使用:P)。目標は次のとおりです。
cabal
一部のソース ファイルが実際に変更された場合にのみ実行します。この Makefile は、Cabal の依存関係の解決に数十秒かかる非常にcabal install
遅いネットブックで使用しているため、可能であれば実行を避けたいと考えています。
独立したデバッグと通常のビルドを別々のビルド ディレクトリに配置します。デフォルトでは、プロファイリング ( --ghc-options=-fprof-auto
) を使用して Cabal ビルドを実行し、次にプロファイリングを使用しない場合、Cabal は最初からやり直し、すべてのファイルを最初から再コンパイルします。ビルドを別々のビルド ディレクトリに配置すると、この問題が回避されます。
(2)があなたにとって興味深いかどうかはわかりませんが、(1)はおそらくそうです。失敗ではなく、成功した場合にのみビルドディレクトリに触れることがわかります。それは正しく機能しないと思います。
Makefile は次のとおりです。
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)