diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,4 +1,4 @@ -all=git-annex mans docs +all=git-annex git-annex-shell mans docs # set to "./Setup" if you lack a cabal program. Or can be set to "stack" BUILDER?=cabal @@ -29,12 +29,15 @@ git-annex: tmp/configure-stamp else \ ln -sf dist/build/git-annex/git-annex git-annex; \ fi - # Work around https://github.com/haskell/cabal/issues/3524 - # when not linked dynamically to haskell libs +# Work around https://github.com/haskell/cabal/issues/3524 +# when not linked dynamically to haskell libs @if ! ldd git-annex | grep -q libHS; then \ chrpath -d git-annex || echo "** unable to chrpath git-annex; it will be a little bit slower than necessary"; \ fi +git-annex-shell: git-annex + ln -sf git-annex git-annex-shell + # These are not built normally. git-union-merge.1: doc/git-union-merge.mdwn ./Build/mdwn2man git-union-merge 1 doc/git-union-merge.mdwn > git-union-merge.1 |