source: skype/Makefile @ bff265c

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

new prepare and distclean targets

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