Changeset 85d7b85 for Makefile


Ignore:
Timestamp:
2008-04-02T14:22:57Z (17 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
f9dbc99
Parents:
875ad42 (diff), dd34575 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r875ad42 r85d7b85  
    1010
    1111# Program variables
    12 objects = account.o bitlbee.o crypting.o help.o ini.o ipc.o irc.o irc_commands.o nick.o query.o root_commands.o set.o storage.o storage_text.o url.o user.o util.o
    13 headers = account.h bitlbee.h commands.h conf.h config.h crypting.h help.h ini.h ipc.h irc.h log.h nick.h query.h set.h sock.h storage.h url.h user.h protocols/http_client.h protocols/md5.h protocols/nogaim.h protocols/proxy.h protocols/sha.h protocols/ssl_client.h
    14 subdirs = protocols
     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
     14subdirs = lib protocols
    1515
    1616ifeq ($(ARCH),Windows)
     
    4646clean: $(subdirs)
    4747        rm -f *.o $(OUTFILE) core utils/bitlbeed encode decode
     48        $(MAKE) -C tests clean
    4849
    4950distclean: clean $(subdirs)
    50         rm -f Makefile.settings config.h
     51        rm -f Makefile.settings config.h bitlbee.pc
    5152        find . -name 'DEADJOE' -o -name '*.orig' -o -name '*.rej' -o -name '*~' -exec rm -f {} \;
     53        $(MAKE) -C tests distclean
     54
     55check: all
     56        $(MAKE) -C tests
     57
     58gcov: check
     59        gcov *.c
     60
     61lcov: check
     62        lcov --directory . --capture --output-file bitlbee.info
     63        genhtml -o coverage bitlbee.info
    5264
    5365install-doc:
     
    109121
    110122encode: crypting.c
    111         $(CC) crypting.c protocols/md5.c $(CFLAGS) -o encode -DCRYPTING_MAIN $(CFLAGS) $(EFLAGS) $(LFLAGS)
     123        $(CC) crypting.c lib/md5.c $(CFLAGS) -o encode -DCRYPTING_MAIN $(CFLAGS) $(EFLAGS) $(LFLAGS)
    112124
    113125decode: encode
Note: See TracChangeset for help on using the changeset viewer.