Changeset bff265c


Ignore:
Timestamp:
2007-08-21T18:46:27Z (17 years ago)
Author:
VMiklos <vmiklos@…>
Branches:
master
Children:
68312b8
Parents:
dfec37e
Message:

new prepare and distclean targets

File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/Makefile

    rdfec37e rbff265c  
    1 CFLAGS += $(shell pkg-config --cflags bitlbee) -g -Wall
    2 LDFLAGS += $(shell pkg-config --libs bitlbee)
     1-include config.mak
    32
    43skype.so: skype.c
    5         gcc -o skype.so -shared skype.c $(CFLAGS)
     4        $(CC) $(CFLAGS) -shared -o skype.so skype.c $(LDFLAGS)
    65
    76client: client.c
    87
     8prepare: configure.ac
     9        cp /usr/share/automake/install-sh ./
     10        cp /usr/share/aclocal/pkg.m4 aclocal.m4
     11        autoconf
     12
    913clean:
    1014        rm -f skype.so
     15
     16distclean: clean
     17        rm -rf autom4te.cache config.log config.mak config.status
     18        rm -f configure install-sh aclocal.m4
    1119
    1220doc: HEADER.html Changelog
Note: See TracChangeset for help on using the changeset viewer.