git-annex/Makefile

40 lines
929 B
Makefile
Raw Normal View History

2010-10-19 18:39:40 +00:00
all: git-annex docs
2010-11-11 21:01:19 +00:00
ghcmake=ghc -Wall -odir build -hidir build -O2 --make
SysConfig.hs: configure.hs
$(ghcmake) configure
./configure
git-annex: SysConfig.hs
$(ghcmake) git-annex
2010-10-10 04:18:16 +00:00
2010-10-16 20:41:24 +00:00
install:
install -d $(DESTDIR)/usr/bin
install git-annex $(DESTDIR)/usr/bin
2010-10-19 18:39:40 +00:00
# If ikiwiki is available, build static html docs suitable for being
# shipped in the software package.
2010-10-19 18:37:19 +00:00
ifeq ($(shell which ikiwiki),)
IKIWIKI=@echo "** ikiwiki not found, skipping building docs" >&2; true
2010-10-19 18:37:19 +00:00
else
IKIWIKI=ikiwiki
endif
2010-11-02 20:49:35 +00:00
test:
$(ghcmake) test
./test
2010-11-02 20:49:35 +00:00
2010-10-19 18:37:19 +00:00
docs:
2010-10-19 19:59:40 +00:00
./mdwn2man git-annex 1 doc/git-annex.mdwn > git-annex.1
2010-10-19 18:39:40 +00:00
$(IKIWIKI) doc html -v --wikiname git-annex --plugin=goodstuff \
2010-10-19 23:28:29 +00:00
--no-usedirs --disable-plugin=openid --plugin=sidebar \
2010-10-22 19:12:48 +00:00
--underlaydir=/dev/null --disable-plugin=shortcut \
--disable-plugin=smiley
2010-10-10 04:18:16 +00:00
2010-10-19 19:59:40 +00:00
clean:
rm -rf build git-annex git-annex.1 test configure SysConfig.hs
2010-10-19 19:59:40 +00:00
rm -rf doc/.ikiwiki html
.PHONY: git-annex test install