source: Makefile @ 875ad42

Last change on this file since 875ad42 was 601e813, checked in by Jelmer Vernooij <jelmer@…>, at 2006-05-24T23:04:18Z

[merge] Wilmer

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