- Timestamp:
- 2008-04-02T14:22:57Z (17 years ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r875ad42 r85d7b85 10 10 11 11 # Program variables 12 objects = account.o bitlbee.o crypting.o help.o i ni.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.o13 headers = account.h bitlbee.h commands.h conf.h config.h crypting.h help.h i ni.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.h14 subdirs = protocols12 objects = 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 13 headers = 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 14 subdirs = lib protocols 15 15 16 16 ifeq ($(ARCH),Windows) … … 46 46 clean: $(subdirs) 47 47 rm -f *.o $(OUTFILE) core utils/bitlbeed encode decode 48 $(MAKE) -C tests clean 48 49 49 50 distclean: clean $(subdirs) 50 rm -f Makefile.settings config.h 51 rm -f Makefile.settings config.h bitlbee.pc 51 52 find . -name 'DEADJOE' -o -name '*.orig' -o -name '*.rej' -o -name '*~' -exec rm -f {} \; 53 $(MAKE) -C tests distclean 54 55 check: all 56 $(MAKE) -C tests 57 58 gcov: check 59 gcov *.c 60 61 lcov: check 62 lcov --directory . --capture --output-file bitlbee.info 63 genhtml -o coverage bitlbee.info 52 64 53 65 install-doc: … … 109 121 110 122 encode: 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) 112 124 113 125 decode: encode
Note: See TracChangeset
for help on using the changeset viewer.