Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r8961950 r6a72a57  
    1010
    1111# Program variables
    12 objects = account.o bitlbee.o conf.o crypting.o help.o ipc.o irc.o irc_commands.o log.o nick.o otr.o query.o root_commands.o set.o storage.o $(STORAGE_OBJS) unix.o user.o
    13 headers = account.h bitlbee.h commands.h conf.h config.h crypting.h help.h ipc.h irc.h log.h nick.h otr.h query.h set.h sock.h storage.h user.h lib/events.h lib/http_client.h lib/ini.h lib/md5.h lib/misc.h lib/proxy.h lib/sha1.h lib/ssl_client.h lib/url.h protocols/nogaim.h
     12objects = account.o bitlbee.o crypting.o help.o ipc.o irc.o irc_commands.o nick.o query.o root_commands.o set.o storage.o $(STORAGE_OBJS) user.o
     13headers = account.h bitlbee.h commands.h conf.h config.h crypting.h help.h ipc.h irc.h log.h nick.h query.h set.h sock.h storage.h user.h lib/events.h lib/http_client.h lib/ini.h lib/md5.h lib/misc.h lib/proxy.h lib/sha1.h lib/ssl_client.h lib/url.h protocols/nogaim.h
    1414subdirs = lib protocols
     15
     16ifeq ($(TARGET),i586-mingw32msvc)
     17objects += win32.o
     18LFLAGS+=-lws2_32
     19EFLAGS+=-lsecur32
     20OUTFILE=bitlbee.exe
     21else
     22objects += unix.o conf.o log.o
     23OUTFILE=bitlbee
     24endif
    1525
    1626# Expansion of variables
     
    5060        $(MAKE) -C tests
    5161
    52 lcov:
    5362gcov: check
    5463        gcov *.c
     
    8594        mkdir -p $(DESTDIR)$(ETCDIR)
    8695        install -m 0644 motd.txt $(DESTDIR)$(ETCDIR)/motd.txt
    87         install -m 0644 welcome.txt $(DESTDIR)$(ETCDIR)/welcome.txt
    8896        install -m 0644 bitlbee.conf $(DESTDIR)$(ETCDIR)/bitlbee.conf
    8997
    9098uninstall-etc:
    9199        rm -f $(DESTDIR)$(ETCDIR)/motd.txt
    92         rm -f $(DESTDIR)$(ETCDIR)/welcome.txt
    93100        rm -f $(DESTDIR)$(ETCDIR)/bitlbee.conf
    94101        -rmdir $(DESTDIR)$(ETCDIR)
Note: See TracChangeset for help on using the changeset viewer.