Last change
on this file since dfec37e was
dfec37e,
checked in by VMiklos <vmiklos@…>, at 2007-08-21T18:20:59Z
|
add a simple skyped client for testing purposes
|
-
Property mode set to
100644
|
File size:
403 bytes
|
Line | |
---|
1 | CFLAGS += $(shell pkg-config --cflags bitlbee) -g -Wall |
---|
2 | LDFLAGS += $(shell pkg-config --libs bitlbee) |
---|
3 | |
---|
4 | skype.so: skype.c |
---|
5 | gcc -o skype.so -shared skype.c $(CFLAGS) |
---|
6 | |
---|
7 | client: client.c |
---|
8 | |
---|
9 | clean: |
---|
10 | rm -f skype.so |
---|
11 | |
---|
12 | doc: HEADER.html Changelog |
---|
13 | |
---|
14 | HEADER.html: README |
---|
15 | ln -s README HEADER.txt |
---|
16 | asciidoc -a toc -a numbered HEADER.txt |
---|
17 | rm HEADER.txt |
---|
18 | |
---|
19 | Changelog: .git/refs/heads/master |
---|
20 | git log --no-merges > Changelog |
---|
Note: See
TracBrowser
for help on using the repository browser.