source: Makefile @ e199620

Last change on this file since e199620 was e199620, checked in by dequis <dx@…>, at 2017-05-18T16:12:34Z

cygwin: add a missing mkdir of libdir to the makefile

  • Property mode set to 100644
File size: 6.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 = bitlbee.o dcc.o help.o ipc.o irc.o irc_im.o irc_cap.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) auth.o $(AUTH_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
22
23doc:
24ifdef DOC
25        $(MAKE) -C doc
26endif
27
28uninstall: uninstall-bin uninstall-doc
29        @echo -e '\nmake uninstall does not remove files in '$(DESTDIR)$(ETCDIR)', you can use make uninstall-etc to do that.\n'
30
31install: install-bin install-doc install-plugins
32        @echo
33        @echo Installed successfully
34        @echo
35        @if ! [ -d $(DESTDIR)$(CONFIG) ]; then echo -e '\nThe configuration directory $(DESTDIR)$(CONFIG) does not exist yet, don'\''t forget to create it!'; fi
36        @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
37ifdef SYSTEMDSYSTEMUNITDIR
38        @echo If you want to start BitlBee using systemd, try \"make install-systemd\".
39endif
40        @echo To be able to compile third party plugins, run \"make install-dev\"
41        @echo
42
43.PHONY:   install   install-bin   install-etc   install-doc install-plugins install-systemd install-dev \
44        uninstall uninstall-bin uninstall-etc uninstall-doc uninstall-etc \
45        all clean distclean tar $(subdirs) doc
46
47Makefile.settings:
48        @echo
49        @echo Run ./configure to create Makefile.settings, then rerun make
50        @echo
51
52clean: $(subdirs)
53        rm -f *.o $(OUTFILE) core utils/bitlbeed init/bitlbee*.service
54        $(MAKE) -C tests clean
55ifdef SKYPE_PI
56        $(MAKE) -C protocols/skype clean
57endif
58
59distclean: clean $(subdirs)
60        rm -rf .depend
61        rm -f Makefile.settings config.h bitlbee.pc
62        find . -name 'DEADJOE' -o -name '*.orig' -o -name '*.rej' -o -name '*~' -exec rm -f {} \;
63        @# May still be present in dirs of disabled protocols.
64        -find . -name .depend -exec rm -rf {} \;
65        $(MAKE) -C tests distclean
66
67check: all
68        $(MAKE) -C tests
69
70gcov: check
71        gcov *.c
72
73lcov: check
74        lcov --directory . --capture --output-file bitlbee.info
75        genhtml -o coverage bitlbee.info
76
77install-doc:
78ifdef DOC
79        $(MAKE) -C doc install
80endif
81ifdef SKYPE_PI
82        $(MAKE) -C protocols/skype install-doc
83endif
84
85uninstall-doc:
86ifdef DOC
87        $(MAKE) -C doc uninstall
88endif
89ifdef SKYPE_PI
90        $(MAKE) -C protocols/skype uninstall-doc
91endif
92
93install-bin:
94        mkdir -p $(DESTDIR)$(SBINDIR)
95        $(INSTALL) -m 0755 $(OUTFILE) $(DESTDIR)$(SBINDIR)/$(OUTFILE)
96ifdef IMPLIB
97        # import library for cygwin
98        mkdir -p $(DESTDIR)$(LIBDIR)
99        $(INSTALL) -m 0644 $(IMPLIB) $(DESTDIR)$(LIBDIR)/$(IMPLIB)
100endif
101
102uninstall-bin:
103        rm -f $(DESTDIR)$(SBINDIR)/$(OUTFILE)
104ifdef IMPLIB
105        rm -f $(DESTDIR)$(LIBDIR)/$(IMPLIB)
106endif
107
108install-dev:
109        mkdir -p $(DESTDIR)$(INCLUDEDIR)
110        $(INSTALL) -m 0644 config.h $(DESTDIR)$(INCLUDEDIR)
111        for i in $(headers); do $(INSTALL) -m 0644 $$i $(DESTDIR)$(INCLUDEDIR); done
112        mkdir -p $(DESTDIR)$(PCDIR)
113        $(INSTALL) -m 0644 bitlbee.pc $(DESTDIR)$(PCDIR)
114
115uninstall-dev:
116        rm -f $(foreach hdr,$(headers),$(DESTDIR)$(INCLUDEDIR)/$(hdr))
117        -rmdir $(DESTDIR)$(INCLUDEDIR)
118        rm -f $(DESTDIR)$(PCDIR)/bitlbee.pc
119
120install-etc:
121        mkdir -p $(DESTDIR)$(ETCDIR)
122        $(INSTALL) -m 0644 $(_SRCDIR_)motd.txt $(DESTDIR)$(ETCDIR)/motd.txt
123        $(INSTALL) -m 0644 $(_SRCDIR_)bitlbee.conf $(DESTDIR)$(ETCDIR)/bitlbee.conf
124
125uninstall-etc:
126        rm -f $(DESTDIR)$(ETCDIR)/motd.txt
127        rm -f $(DESTDIR)$(ETCDIR)/bitlbee.conf
128        -rmdir $(DESTDIR)$(ETCDIR)
129
130install-plugins: install-plugin-otr install-plugin-skype
131
132install-plugin-otr:
133ifdef OTR_PI
134        mkdir -p $(DESTDIR)$(PLUGINDIR)
135        $(INSTALL) -m 0755 otr.so $(DESTDIR)$(PLUGINDIR)
136endif
137
138install-plugin-skype:
139ifdef SKYPE_PI
140        mkdir -p $(DESTDIR)$(PLUGINDIR)
141        $(INSTALL) -m 0755 skype.so $(DESTDIR)$(PLUGINDIR)
142        mkdir -p $(DESTDIR)$(ETCDIR)/../skyped $(DESTDIR)$(BINDIR)
143        $(INSTALL) -m 0644 $(_SRCDIR_)protocols/skype/skyped.cnf $(DESTDIR)$(ETCDIR)/../skyped/skyped.cnf
144        $(INSTALL) -m 0644 $(_SRCDIR_)protocols/skype/skyped.conf.dist $(DESTDIR)$(ETCDIR)/../skyped/skyped.conf
145        $(INSTALL) -m 0755 $(_SRCDIR_)protocols/skype/skyped.py $(DESTDIR)$(BINDIR)/skyped
146        $(MAKE) -C protocols/skype install-doc
147endif
148
149systemd:
150ifdef SYSTEMDSYSTEMUNITDIR
151        mkdir -p init
152        sed 's|@sbindir@|$(SBINDIR)|' $(_SRCDIR_)init/bitlbee.service.in > init/bitlbee.service
153        sed 's|@sbindir@|$(SBINDIR)|' $(_SRCDIR_)init/bitlbee@.service.in > init/bitlbee@.service
154endif
155
156install-systemd: systemd
157ifdef SYSTEMDSYSTEMUNITDIR
158        mkdir -p $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
159        $(INSTALL) -m 0644 init/bitlbee.service $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
160        $(INSTALL) -m 0644 init/bitlbee@.service $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
161        $(INSTALL) -m 0644 $(_SRCDIR_)init/bitlbee.socket $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
162else
163        @echo SYSTEMDSYSTEMUNITDIR not set, not installing systemd unit files.
164endif
165
166tar:
167        fakeroot debian/rules clean || make distclean
168        x=$$(basename $$(pwd)); \
169        cd ..; \
170        tar czf $$x.tar.gz --exclude=debian --exclude=.git* --exclude=.depend $$x
171
172$(subdirs):
173        $(MAKE) -C $@ $(MAKECMDGOALS)
174
175$(OTR_PI): %.so: $(_SRCDIR_)%.c
176        @echo '*' Building plugin $@
177        $(VERBOSE) $(CC) $(CFLAGS) -fPIC -shared $(LDFLAGS) $< -o $@ $(OTRFLAGS)
178
179$(SKYPE_PI): $(_SRCDIR_)protocols/skype/skype.c
180        @echo '*' Building plugin skype
181        $(VERBOSE) $(CC) $(CFLAGS) $(LDFLAGS) $(SKYPEFLAGS) $< -o $@
182
183$(objects): %.o: $(_SRCDIR_)%.c
184        @echo '*' Compiling $<
185        $(VERBOSE) $(CC) -c $(CFLAGS) $(CFLAGS_BITLBEE) $< -o $@
186
187$(objects): Makefile Makefile.settings config.h
188
189$(OUTFILE): $(objects) $(subdirs)
190        @echo '*' Linking $(OUTFILE)
191        $(VERBOSE) $(CC) $(objects) $(subdirobjs) -o $(OUTFILE) $(LDFLAGS_BITLBEE) $(LDFLAGS) $(EFLAGS)
192ifneq ($(firstword $(STRIP)), \#)
193        @echo '*' Stripping $(OUTFILE)
194        $(VERBOSE) -$(STRIP) $(OUTFILE)
195endif
196
197ctags: 
198        ctags `find . -name "*.c"` `find . -name "*.h"`
199
200# Using this as a bogus Make target to test if a GNU-compatible version of
201# make is available.
202helloworld:
203        @echo Hello World
204
205# Check if we can load the helpfile. (This fails if some article is >1KB.)
206# If print returns a NULL pointer, the file is unusable.
207testhelp: doc
208        gdb --eval-command='b main' --eval-command='r' \
209            --eval-command='print help_init(&global->helpfile, "doc/user-guide/help.txt")' \
210            $(OUTFILE) < /dev/null
211
212-include .depend/*.d
213# DO NOT DELETE
Note: See TracBrowser for help on using the repository browser.