summaryrefslogtreecommitdiff
path: root/Makefile
blob: d1fcbbeeeb5d97599e89c7ba19a92d63dc64bf2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
git-annex:
	mkdir -p build
	ghc -odir build -hidir build --make git-annex

install:
	install -d $(DESTDIR)/usr/bin
	install git-annex $(DESTDIR)/usr/bin

clean:
	rm -rf build git-annex

.PHONY: git-annex