summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2013-11-18 13:28:44 -0400
committerJoey Hess <joey@kitenet.net>2013-11-18 13:28:44 -0400
commit73342b651bc52864c2ebfc5788ea6ab30042bc12 (patch)
treea6460f6314f674c3327b2f74e65d688014c760d9 /Makefile
parent06d2ee5cd256b34ee9e4d0b02a215ea386f8b3dd (diff)
downloadgit-repair-73342b651bc52864c2ebfc5788ea6ab30042bc12.tar.gz
add
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..07df05d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,31 @@
+PREFIX=/usr
+CABAL?=cabal # set to "./Setup" if you lack a cabal program
+
+build: Build/SysConfig.hs
+ $(CABAL) build
+ ln -sf dist/build/git-repair/git-repair git-repair
+ @$(MAKE) tags >/dev/null 2>&1 &
+
+Build/SysConfig.hs: configure.hs Build/TestConfig.hs Build/Configure.hs
+ if [ "$(CABAL)" = ./Setup ]; then ghc --make Setup; fi
+ $(CABAL) configure
+
+install: build
+ install -d $(DESTDIR)$(PREFIX)/bin
+ install git-repair $(DESTDIR)$(PREFIX)/bin
+ install -d $(DESTDIR)$(PREFIX)/share/man/man1
+ install -m 0644 git-repair.1 $(DESTDIR)$(PREFIX)/share/man/man1
+
+clean:
+ rm -rf git-repair dist configure Build/SysConfig.hs Setup tags
+ find -name \*.o -exec rm {} \;
+ find -name \*.hi -exec rm {} \;
+
+# Upload to hackage.
+hackage: clean
+ ./Build/make-sdist.sh
+ @cabal upload dist/*.tar.gz
+
+# hothasktags chokes on some template haskell etc, so ignore errors
+tags:
+ find . | grep -v /.git/ | grep -v /tmp/ | grep -v /dist/ | grep -v /doc/ | egrep '\.hs$$' | xargs hothasktags > tags 2>/dev/null