source: doc/Makefile @ a893271

Last change on this file since a893271 was fd45e859, checked in by dequis <dx@…>, at 2015-06-04T17:13:22Z

Allow building docs from any directory

Also just remove the .git check completely - just rely on make skipping
it if it exists already.

  • Property mode set to 100644
File size: 501 bytes
Line 
1-include ../Makefile.settings
2ifdef _SRCDIR_
3_SRCDIR_ := $(_SRCDIR_)doc/
4endif
5
6all:
7        $(MAKE) -C user-guide
8
9install:
10        mkdir -p $(DESTDIR)$(MANDIR)/man8/ $(DESTDIR)$(MANDIR)/man5/
11        $(INSTALL) -m 0644 $(_SRCDIR_)bitlbee.8 $(DESTDIR)$(MANDIR)/man8/
12        $(INSTALL) -m 0644 $(_SRCDIR_)bitlbee.conf.5 $(DESTDIR)$(MANDIR)/man5/
13        $(MAKE) -C user-guide $@
14
15uninstall:
16        rm -f $(DESTDIR)$(MANDIR)/man8/bitlbee.8*
17        rm -f $(DESTDIR)$(MANDIR)/man5/bitlbee.conf.5*
18        $(MAKE) -C user-guide $@
19
20.PHONY: install uninstall
Note: See TracBrowser for help on using the repository browser.