source: protocols/skype/Makefile @ 33ed455

Last change on this file since 33ed455 was 650d2b4, checked in by Miklos Vajna <vmiklos@…>, at 2013-01-13T11:51:02Z

skype: convert msg test to a mock-based one

  • Property mode set to 100644
File size: 772 bytes
RevLine 
[5155570]1-include ../../Makefile.settings
[7fa5c19]2ifdef _SRCDIR_
3_SRCDIR_ := $(_SRCDIR_)protocols/skype/
[5155570]4endif
[f06e3ac]5
[398eb78]6DATE := $(shell date +%Y-%m-%d)
[e46db53]7INSTALL = install
8ASCIIDOC = yes
[05c1bed]9
[cc7a153]10ifeq ($(ASCIIDOC),yes)
11MANPAGES = skyped.1
12else
13MANPAGES =
14endif
15
[757e1e0]16all: $(MANPAGES)
[bff265c]17
[f06e3ac]18clean:
[757e1e0]19        rm -f $(MANPAGES)
[bff265c]20
[16304ab]21# take this from the kernel
22check:
[e1d6b38]23        perl checkpatch.pl --show-types --ignore LONG_LINE,CAMELCASE --no-tree --file skype.c
[16304ab]24
[7279554]25test: all
[650d2b4]26        ./test.py
[7279554]27
[e46db53]28doc: $(MANPAGES)
[5155570]29
[e46db53]30install-doc: doc
31ifeq ($(ASCIIDOC),yes)
32        $(INSTALL) -d $(DESTDIR)$(MANDIR)/man1
33        $(INSTALL) -m644 $(MANPAGES) $(DESTDIR)$(MANDIR)/man1
34endif
[5155570]35
36uninstall-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.