source: skype/Makefile @ d1c9e35

Last change on this file since d1c9e35 was d1c9e35, checked in by VMiklos <vmiklos@…>, at 2007-08-20T16:49:35Z

build the doc only if it's updated

  • Property mode set to 100644
File size: 307 bytes
Line 
1CFLAGS += $(shell pkg-config --cflags bitlbee) -g -Wall
2LDFLAGS += $(shell pkg-config --libs bitlbee)
3
4skype.so: skype.c
5        gcc -o skype.so -shared skype.c $(CFLAGS)
6
7clean:
8        rm -f skype.so
9
10doc: HEADER.html
11
12HEADER.html: README
13        ln -s README HEADER.txt
14        asciidoc -a toc -a numbered HEADER.txt
15        rm HEADER.txt
Note: See TracBrowser for help on using the repository browser.