source:
protocols/skype/Makefile
@
cb1b973
Last change on this file since cb1b973 was a85a8ab, checked in by , at 2015-02-23T04:50:32Z | |
---|---|
|
|
File size: 742 bytes |
Rev | Line | |
---|---|---|
[5155570] | 1 | -include ../../Makefile.settings |
[7fa5c19] | 2 | ifdef _SRCDIR_ |
3 | _SRCDIR_ := $(_SRCDIR_)protocols/skype/ | |
[5155570] | 4 | endif |
[f06e3ac] | 5 | |
[398eb78] | 6 | DATE := $(shell date +%Y-%m-%d) |
[e46db53] | 7 | INSTALL = install |
[05c1bed] | 8 | |
[a85a8ab] | 9 | |
10 | ifdef ASCIIDOC | |
[cc7a153] | 11 | MANPAGES = skyped.1 |
12 | else | |
13 | MANPAGES = | |
14 | endif | |
15 | ||
[757e1e0] | 16 | all: $(MANPAGES) |
[bff265c] | 17 | |
[f06e3ac] | 18 | clean: |
[757e1e0] | 19 | rm -f $(MANPAGES) |
[bff265c] | 20 | |
[16304ab] | 21 | # take this from the kernel |
22 | check: | |
[e1d6b38] | 23 | perl checkpatch.pl --show-types --ignore LONG_LINE,CAMELCASE --no-tree --file skype.c |
[16304ab] | 24 | |
[7279554] | 25 | test: all |
[650d2b4] | 26 | ./test.py |
[7279554] | 27 | |
[e46db53] | 28 | doc: $(MANPAGES) |
[5155570] | 29 | |
[e46db53] | 30 | install-doc: doc |
[a85a8ab] | 31 | ifdef ASCIIDOC |
[e46db53] | 32 | $(INSTALL) -d $(DESTDIR)$(MANDIR)/man1 |
33 | $(INSTALL) -m644 $(MANPAGES) $(DESTDIR)$(MANDIR)/man1 | |
34 | endif | |
[5155570] | 35 | |
36 | uninstall-doc: | |
37 | rm -f $(DESTDIR)$(MANDIR)/man1/skyped.1* | |
[d1c9e35] | 38 | |
[7fa5c19] | 39 | %.1: $(_SRCDIR_)%.txt $(_SRCDIR_)asciidoc.conf |
[757e1e0] | 40 | a2x --asciidoc-opts="-f $(_SRCDIR_)asciidoc.conf" -a bee_date=$(DATE) -f manpage -D . $< |
Note: See TracBrowser
for help on using the repository browser.