source: doc/Makefile @ e26aa72

Last change on this file since e26aa72 was e26aa72, checked in by dequis <dx@…>, at 2015-01-25T05:00:06Z

Add git specific stuff!

  • A few build system tweaks
  • A fancy README.md
  • s/.bzrignore/.gitignore/
  • .travis.yml for travis-ci integration
  • doc/git-bzr-rev-map for historical purposes
  • Property mode set to 100644
File size: 589 bytes
Line 
1-include ../Makefile.settings
2ifdef _SRCDIR_
3_SRCDIR_ := $(_SRCDIR_)doc/
4endif
5
6all:
7        # Only build the docs if this is a git tree
8        test ! '(' -d ../.git -o -d ../.bzr ')' || $(MAKE) -C user-guide
9
10install:
11        mkdir -p $(DESTDIR)$(MANDIR)/man8/ $(DESTDIR)$(MANDIR)/man5/
12        $(INSTALL) -m 0644 $(_SRCDIR_)bitlbee.8 $(DESTDIR)$(MANDIR)/man8/
13        $(INSTALL) -m 0644 $(_SRCDIR_)bitlbee.conf.5 $(DESTDIR)$(MANDIR)/man5/
14        $(MAKE) -C user-guide $@
15
16uninstall:
17        rm -f $(DESTDIR)$(MANDIR)/man8/bitlbee.8*
18        rm -f $(DESTDIR)$(MANDIR)/man5/bitlbee.conf.5*
19        $(MAKE) -C user-guide $@
20
21.PHONY: install uninstall
Note: See TracBrowser for help on using the repository browser.