[b7d3cc34] | 1 | ########################### |
---|
| 2 | ## Makefile for BitlBee ## |
---|
| 3 | ## ## |
---|
| 4 | ## Copyright 2002 Lintux ## |
---|
| 5 | ########################### |
---|
| 6 | |
---|
| 7 | ### DEFINITIONS |
---|
| 8 | |
---|
| 9 | -include Makefile.settings |
---|
| 10 | |
---|
| 11 | # Program variables |
---|
[b3c467b] | 12 | objects = account.o bitlbee.o conf.o crypting.o help.o ipc.o irc.o irc_commands.o log.o nick.o query.o root_commands.o set.o storage.o $(STORAGE_OBJS) unix.o user.o |
---|
[e506d6c] | 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 |
---|
[df1694b] | 14 | subdirs = protocols lib |
---|
[b7d3cc34] | 15 | |
---|
| 16 | # Expansion of variables |
---|
| 17 | subdirobjs = $(foreach dir,$(subdirs),$(dir)/$(dir).o) |
---|
| 18 | CFLAGS += -Wall |
---|
| 19 | |
---|
| 20 | all: $(OUTFILE) |
---|
[513a323] | 21 | $(MAKE) -C doc |
---|
[b7d3cc34] | 22 | |
---|
[cdb92c5] | 23 | uninstall: uninstall-bin uninstall-doc |
---|
[b7d3cc34] | 24 | @echo -e '\nmake uninstall does not remove files in '$(DESTDIR)$(ETCDIR)', you can use make uninstall-etc to do that.\n' |
---|
| 25 | |
---|
| 26 | install: install-bin install-doc |
---|
| 27 | @if ! [ -d $(DESTDIR)$(CONFIG) ]; then echo -e '\nThe configuration directory $(DESTDIR)$(CONFIG) does not exist yet, don'\''t forget to create it!'; fi |
---|
| 28 | @if ! [ -e $(DESTDIR)$(ETCDIR)/bitlbee.conf ]; then echo -e '\nNo files are installed in '$(DESTDIR)$(ETCDIR)' by make install. Run make install-etc to do that.'; fi |
---|
| 29 | @echo |
---|
| 30 | |
---|
| 31 | .PHONY: install install-bin install-etc install-doc \ |
---|
| 32 | uninstall uninstall-bin uninstall-etc uninstall-doc \ |
---|
| 33 | all clean distclean tar $(subdirs) |
---|
| 34 | |
---|
| 35 | Makefile.settings: |
---|
| 36 | @echo |
---|
| 37 | @echo Run ./configure to create Makefile.settings, then rerun make |
---|
| 38 | @echo |
---|
| 39 | |
---|
| 40 | clean: $(subdirs) |
---|
| 41 | rm -f *.o $(OUTFILE) core utils/bitlbeed encode decode |
---|
| 42 | |
---|
| 43 | distclean: clean $(subdirs) |
---|
[b3c467b] | 44 | rm -f Makefile.settings config.h bitlbee.pc |
---|
[34c0e90] | 45 | find . -name 'DEADJOE' -o -name '*.orig' -o -name '*.rej' -o -name '*~' -exec rm -f {} \; |
---|
[b7d3cc34] | 46 | |
---|
[c2fa827] | 47 | check: |
---|
| 48 | $(MAKE) -C tests |
---|
| 49 | |
---|
[b7d3cc34] | 50 | install-doc: |
---|
| 51 | $(MAKE) -C doc install |
---|
| 52 | |
---|
| 53 | uninstall-doc: |
---|
| 54 | $(MAKE) -C doc uninstall |
---|
| 55 | |
---|
| 56 | install-bin: |
---|
| 57 | mkdir -p $(DESTDIR)$(BINDIR) |
---|
| 58 | install -m 0755 $(OUTFILE) $(DESTDIR)$(BINDIR)/$(OUTFILE) |
---|
| 59 | |
---|
| 60 | uninstall-bin: |
---|
| 61 | rm -f $(DESTDIR)$(BINDIR)/$(OUTFILE) |
---|
| 62 | |
---|
[cdb92c5] | 63 | install-dev: |
---|
[e506d6c] | 64 | mkdir -p $(DESTDIR)$(INCLUDEDIR) |
---|
| 65 | install -m 0644 $(headers) $(DESTDIR)$(INCLUDEDIR) |
---|
| 66 | mkdir -p $(DESTDIR)$(PCDIR) |
---|
| 67 | install -m 0644 bitlbee.pc $(DESTDIR)$(PCDIR) |
---|
| 68 | |
---|
[cdb92c5] | 69 | uninstall-dev: |
---|
| 70 | rm -f $(foreach hdr,$(headers),$(DESTDIR)$(INCLUDEDIR)/$(hdr)) |
---|
| 71 | -rmdir $(DESTDIR)$(INCLUDEDIR) |
---|
[e506d6c] | 72 | rm -f $(DESTDIR)$(PCDIR)/bitlbee.pc |
---|
| 73 | |
---|
[b7d3cc34] | 74 | install-etc: |
---|
| 75 | mkdir -p $(DESTDIR)$(ETCDIR) |
---|
| 76 | install -m 0644 motd.txt $(DESTDIR)$(ETCDIR)/motd.txt |
---|
| 77 | install -m 0644 bitlbee.conf $(DESTDIR)$(ETCDIR)/bitlbee.conf |
---|
| 78 | |
---|
| 79 | uninstall-etc: |
---|
| 80 | rm -f $(DESTDIR)$(ETCDIR)/motd.txt |
---|
| 81 | rm -f $(DESTDIR)$(ETCDIR)/bitlbee.conf |
---|
| 82 | -rmdir $(DESTDIR)$(ETCDIR) |
---|
| 83 | |
---|
| 84 | tar: |
---|
| 85 | fakeroot debian/rules clean || make distclean |
---|
| 86 | x=$$(basename $$(pwd)); \ |
---|
| 87 | cd ..; \ |
---|
[fe51bcf] | 88 | tar czf $$x.tar.gz --exclude=debian --exclude=.bzr $$x |
---|
[b7d3cc34] | 89 | |
---|
| 90 | $(subdirs): |
---|
| 91 | @$(MAKE) -C $@ $(MAKECMDGOALS) |
---|
| 92 | |
---|
| 93 | $(objects): %.o: %.c |
---|
| 94 | @echo '*' Compiling $< |
---|
| 95 | @$(CC) -c $(CFLAGS) $< -o $@ |
---|
| 96 | |
---|
| 97 | $(objects): Makefile Makefile.settings config.h |
---|
| 98 | |
---|
| 99 | $(OUTFILE): $(objects) $(subdirs) |
---|
| 100 | @echo '*' Linking $(OUTFILE) |
---|
| 101 | @$(CC) $(objects) $(subdirobjs) -o $(OUTFILE) $(LFLAGS) $(EFLAGS) |
---|
| 102 | ifndef DEBUG |
---|
| 103 | @echo '*' Stripping $(OUTFILE) |
---|
| 104 | @-$(STRIP) $(OUTFILE) |
---|
| 105 | endif |
---|
| 106 | |
---|
| 107 | encode: crypting.c |
---|
| 108 | $(CC) crypting.c protocols/md5.c $(CFLAGS) -o encode -DCRYPTING_MAIN $(CFLAGS) $(EFLAGS) $(LFLAGS) |
---|
| 109 | |
---|
| 110 | decode: encode |
---|
| 111 | cp encode decode |
---|
| 112 | |
---|
| 113 | ctags: |
---|
| 114 | ctags `find . -name "*.c"` `find . -name "*.h"` |
---|