source: skype/Makefile @ bbf1050

Last change on this file since bbf1050 was bbf1050, checked in by VMiklos <vmiklos@…>, at 2007-08-21T18:50:09Z

added an install target

  • Property mode set to 100644
File size: 674 bytes
Line 
1-include config.mak
2
3skype.so: skype.c config.mak
4        $(CC) $(CFLAGS) -shared -o skype.so skype.c $(LDFLAGS)
5
6install: skype.so
7        $(INSTALL) -d $(DESTDIR)$(plugindir)
8        $(INSTALL) skype.so $(DESTDIR)$(plugindir)
9
10client: client.c
11
12prepare: configure.ac
13        cp /usr/share/automake/install-sh ./
14        cp /usr/share/aclocal/pkg.m4 aclocal.m4
15        autoconf
16
17clean:
18        rm -f skype.so
19
20distclean: clean
21        rm -rf autom4te.cache config.log config.mak config.status
22        rm -f configure install-sh aclocal.m4
23
24doc: HEADER.html Changelog
25
26HEADER.html: README
27        ln -s README HEADER.txt
28        asciidoc -a toc -a numbered HEADER.txt
29        rm HEADER.txt
30
31Changelog: .git/refs/heads/master
32        git log --no-merges > Changelog
Note: See TracBrowser for help on using the repository browser.