source: skype/Makefile @ cd3022c

Last change on this file since cd3022c was e23a46e, checked in by VMiklos <vmiklos@…>, at 2007-08-20T19:47:13Z

add a changelog

  • Property mode set to 100644
File size: 385 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 Changelog
11
12HEADER.html: README
13        ln -s README HEADER.txt
14        asciidoc -a toc -a numbered HEADER.txt
15        rm HEADER.txt
16
17Changelog: .git/refs/heads/master
18        git log --no-merges > Changelog
Note: See TracBrowser for help on using the repository browser.