Changeset 752a591 for skype/Makefile


Ignore:
Timestamp:
2008-09-05T19:54:45Z (16 years ago)
Author:
Miklos Vajna <vmiklos@…>
Branches:
master
Children:
b414e30
Parents:
ef399c2
Message:

make bitlbee dependency optional as well

this way it's possible to build bitlbee-skype on a client where only
skyped will be running, so messing with the plugin makes no sense

File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/Makefile

    ref399c2 r752a591  
    88
    99skype.$(SHARED_EXT): skype.c config.mak
     10ifeq ($(BITLBEE),yes)
    1011        $(CC) $(CFLAGS) $(SHARED_FLAGS) -o skype.$(SHARED_EXT) skype.c $(LDFLAGS)
     12endif
    1113
    1214install: skype.$(SHARED_EXT) skyped.py
     15ifeq ($(BITLBEE),yes)
    1316        $(INSTALL) -d $(DESTDIR)$(plugindir)
    1417        $(INSTALL) skype.$(SHARED_EXT) $(DESTDIR)$(plugindir)
     18endif
    1519ifeq ($(SKYPED),yes)
    1620        $(INSTALL) -d $(DESTDIR)$(bindir)
     
    2731autogen: configure.ac
    2832        cp /usr/share/automake-$(AMVERSION)/install-sh ./
    29         cp /usr/share/aclocal/pkg.m4 aclocal.m4
    3033        autoconf
    3134
Note: See TracChangeset for help on using the changeset viewer.