source: Makefile @ 5ebff60

Last change on this file since 5ebff60 was e26aa72, checked in by dequis <dx@…>, at 2015-01-25T05:00:06Z

Add git specific stuff!

  • A few build system tweaks
  • A fancy README.md
  • s/.bzrignore/.gitignore/
  • .travis.yml for travis-ci integration
  • doc/git-bzr-rev-map for historical purposes
  • Property mode set to 100644
File size: 6.0 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 = bitlbee.o dcc.o help.o ipc.o irc.o irc_im.o irc_channel.o irc_commands.o irc_send.o irc_user.o irc_util.o nick.o $(OTR_BI) query.o root_commands.o set.o storage.o $(STORAGE_OBJS) unix.o conf.o log.o
13headers = $(wildcard $(_SRCDIR_)*.h $(_SRCDIR_)lib/*.h $(_SRCDIR_)protocols/*.h)
14subdirs = lib protocols
15
16OUTFILE = bitlbee
17
18# Expansion of variables
19subdirobjs = $(foreach dir,$(subdirs),$(dir)/$(dir).o)
20
21all: $(OUTFILE) $(OTR_PI) $(SKYPE_PI) doc systemd
22ifdef SKYPE_PI
23        $(MAKE) -C protocols/skype doc
24endif
25
26doc:
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 install-plugins
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
35ifdef SYSTEMDSYSTEMUNITDIR
36        @echo If you want to start BitlBee using systemd, try \"make install-systemd\".
37endif
38        @echo
39
40.PHONY:   install   install-bin   install-etc   install-doc install-plugins install-systemd \
41        uninstall uninstall-bin uninstall-etc uninstall-doc \
42        all clean distclean tar $(subdirs) doc
43
44Makefile.settings:
45        @echo
46        @echo Run ./configure to create Makefile.settings, then rerun make
47        @echo
48
49clean: $(subdirs)
50        rm -f *.o $(OUTFILE) core utils/bitlbeed init/bitlbee*.service
51        $(MAKE) -C tests clean
52ifdef SKYPE_PI
53        $(MAKE) -C protocols/skype clean
54endif
55
56distclean: clean $(subdirs)
57        rm -rf .depend
58        rm -f Makefile.settings config.h bitlbee.pc
59        find . -name 'DEADJOE' -o -name '*.orig' -o -name '*.rej' -o -name '*~' -exec rm -f {} \;
60        @# May still be present in dirs of disabled protocols.
61        -find . -name .depend -exec rm -rf {} \;
62        $(MAKE) -C tests distclean
63
64check: all
65        $(MAKE) -C tests
66
67gcov: check
68        gcov *.c
69
70lcov: check
71        lcov --directory . --capture --output-file bitlbee.info
72        genhtml -o coverage bitlbee.info
73
74install-doc:
75        $(MAKE) -C doc install
76ifdef SKYPE_PI
77        $(MAKE) -C protocols/skype install-doc
78endif
79
80uninstall-doc:
81        $(MAKE) -C doc uninstall
82ifdef SKYPE_PI
83        $(MAKE) -C protocols/skype uninstall-doc
84endif
85
86install-bin:
87        mkdir -p $(DESTDIR)$(SBINDIR)
88        $(INSTALL) -m 0755 $(OUTFILE) $(DESTDIR)$(SBINDIR)/$(OUTFILE)
89
90uninstall-bin:
91        rm -f $(DESTDIR)$(SBINDIR)/$(OUTFILE)
92
93install-dev:
94        mkdir -p $(DESTDIR)$(INCLUDEDIR)
95        $(INSTALL) -m 0644 config.h $(DESTDIR)$(INCLUDEDIR)
96        for i in $(headers); do $(INSTALL) -m 0644 $$i $(DESTDIR)$(INCLUDEDIR); done
97        mkdir -p $(DESTDIR)$(PCDIR)
98        $(INSTALL) -m 0644 bitlbee.pc $(DESTDIR)$(PCDIR)
99
100uninstall-dev:
101        rm -f $(foreach hdr,$(headers),$(DESTDIR)$(INCLUDEDIR)/$(hdr))
102        -rmdir $(DESTDIR)$(INCLUDEDIR)
103        rm -f $(DESTDIR)$(PCDIR)/bitlbee.pc
104
105install-etc:
106        mkdir -p $(DESTDIR)$(ETCDIR)
107        $(INSTALL) -m 0644 $(_SRCDIR_)motd.txt $(DESTDIR)$(ETCDIR)/motd.txt
108        $(INSTALL) -m 0644 $(_SRCDIR_)bitlbee.conf $(DESTDIR)$(ETCDIR)/bitlbee.conf
109
110uninstall-etc:
111        rm -f $(DESTDIR)$(ETCDIR)/motd.txt
112        rm -f $(DESTDIR)$(ETCDIR)/bitlbee.conf
113        -rmdir $(DESTDIR)$(ETCDIR)
114
115install-plugins: install-plugin-otr install-plugin-skype
116
117install-plugin-otr:
118ifdef OTR_PI
119        mkdir -p $(DESTDIR)$(PLUGINDIR)
120        $(INSTALL) -m 0755 otr.so $(DESTDIR)$(PLUGINDIR)
121endif
122
123install-plugin-skype:
124ifdef SKYPE_PI
125        mkdir -p $(DESTDIR)$(PLUGINDIR)
126        $(INSTALL) -m 0755 skype.so $(DESTDIR)$(PLUGINDIR)
127        mkdir -p $(DESTDIR)$(ETCDIR)/../skyped $(DESTDIR)$(BINDIR)
128        $(INSTALL) -m 0644 $(_SRCDIR_)protocols/skype/skyped.cnf $(DESTDIR)$(ETCDIR)/../skyped/skyped.cnf
129        $(INSTALL) -m 0644 $(_SRCDIR_)protocols/skype/skyped.conf.dist $(DESTDIR)$(ETCDIR)/../skyped/skyped.conf
130        $(INSTALL) -m 0755 $(_SRCDIR_)protocols/skype/skyped.py $(DESTDIR)$(BINDIR)/skyped
131        $(MAKE) -C protocols/skype install-doc
132endif
133
134systemd:
135ifdef SYSTEMDSYSTEMUNITDIR
136        mkdir -p init
137        sed 's|@sbindir@|$(SBINDIR)|' $(_SRCDIR_)init/bitlbee.service.in > init/bitlbee.service
138        sed 's|@sbindir@|$(SBINDIR)|' $(_SRCDIR_)init/bitlbee@.service.in > init/bitlbee@.service
139endif
140
141install-systemd: systemd
142ifdef SYSTEMDSYSTEMUNITDIR
143        mkdir -p $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
144        $(INSTALL) -m 0644 init/bitlbee.service $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
145        $(INSTALL) -m 0644 init/bitlbee@.service $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
146        $(INSTALL) -m 0644 $(_SRCDIR_)init/bitlbee.socket $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
147else
148        @echo SYSTEMDSYSTEMUNITDIR not set, not installing systemd unit files.
149endif
150
151tar:
152        fakeroot debian/rules clean || make distclean
153        x=$$(basename $$(pwd)); \
154        cd ..; \
155        tar czf $$x.tar.gz --exclude-from=.gitignore $$x
156
157$(subdirs):
158        @$(MAKE) -C $@ $(MAKECMDGOALS)
159
160$(OTR_PI): %.so: $(_SRCDIR_)%.c
161        @echo '*' Building plugin $@
162        @$(CC) $(CFLAGS) -fPIC -shared $(LDFLAGS) $< -o $@ $(OTRFLAGS)
163
164$(SKYPE_PI): $(_SRCDIR_)protocols/skype/skype.c
165        @echo '*' Building plugin skype
166        @$(CC) $(CFLAGS) $(LDFLAGS) $(SKYPEFLAGS) $< -o $@
167
168$(objects): %.o: $(_SRCDIR_)%.c
169        @echo '*' Compiling $<
170        @$(CC) -c $(CFLAGS) $(CFLAGS_BITLBEE) $< -o $@
171
172$(objects): Makefile Makefile.settings config.h
173
174$(OUTFILE): $(objects) $(subdirs)
175        @echo '*' Linking $(OUTFILE)
176        @$(CC) $(objects) $(subdirobjs) -o $(OUTFILE) $(LDFLAGS_BITLBEE) $(LDFLAGS) $(EFLAGS)
177ifndef DEBUG
178        @echo '*' Stripping $(OUTFILE)
179        @-$(STRIP) $(OUTFILE)
180endif
181
182ctags: 
183        ctags `find . -name "*.c"` `find . -name "*.h"`
184
185# Using this as a bogus Make target to test if a GNU-compatible version of
186# make is available.
187helloworld:
188        @echo Hello World
189
190# Check if we can load the helpfile. (This fails if some article is >1KB.)
191# If print returns a NULL pointer, the file is unusable.
192testhelp: doc
193        gdb --eval-command='b main' --eval-command='r' \
194            --eval-command='print help_init(&global->helpfile, "doc/user-guide/help.txt")' \
195            $(OUTFILE) < /dev/null
196
197-include .depend/*.d
198# DO NOT DELETE
Note: See TracBrowser for help on using the repository browser.